标签: dart
我注意到某些类中有一个@运算符。
例如,
@TestOn("!vm") .....
当我进一步挖掘TestOn是一个类。
class TestOn { /// The expression specifying the platform. final String expression; const TestOn(this.expression); }
有人能告诉我@ operator的意义是什么吗?
答案 0 :(得分:4)
@TestOn("!vm")是metadata annotation。它们用于提供有关Dart程序中元素的额外信息。
@TestOn("!vm")