blob: 3a6a4e854c2a3a74e8598dcdde1881d21ff5660d [file] [log] [blame]
typedef FuncType<T> = Function();
class Key<T> {
final FuncType<T> f;
const Key(this.f);
}
someFunc<T>() {}
const someKey = Key(someFunc);