blob: a6784da990a83a9bed4b13408b0b4174583121a3 [file] [log] [blame]
class Foo extends Bar implements Baz {
Foo() {
// Constructor
}
factory Foo.factory() => Foo();
void method() {
// instance method.
}
static void staticMethod() {
// static method.
}
int field1, field2 = 42;
}
class Foo2 with Bar2 {
// empty
}