blob: bb5d7d3614603d60a2ca240877b0436703b00509 [file] [log] [blame]
class Color {
final int x;
static Color get red => Color(1);
static Color get blue => Color(2);
Color(this.x);
}
void main() {}