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