>>316
class StructTest {
StructTest({this.a = 0, this.b = 0});

final int a;
final int b;
}

final st = List<StructTest>.filled(10, StructTest());