I noticed that there is a @ operator in some of the classes.
For example,
@TestOn("!vm")
.....
When I dig further TestOn is a class.
class TestOn {
/// The expression specifying the platform.
final String expression;
const TestOn(this.expression);
}
Can someone tell me what is the significance of @ operator?