PointContainer constructor

PointContainer(
  1. {required String languageCode,
  2. String name = "Pallino",
  3. ContainerType type = ContainerType.point,
  4. String a = "C",
  5. String b = "1"}
)

Implementation

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