PointContainer constructor
- {required String languageCode,
- String name = "Pallino",
- ContainerType type = ContainerType.point,
- String a = "C",
- String b = "1"}
Implementation
PointContainer({
required super.languageCode,
super.name = "Pallino",
super.type = ContainerType.point,
this.a = "C",
this.b = "1",
});