blob: e7ad045f651eb55de187d91f5c403fd371373c60 [file] [log] [blame]
class Foo<T> {
Foo._internal({required this.x});
Foo.from(String _init) : this._internal(x: _init);
T x;
}
void main() {}