MirrorSimpleContainer constructor

MirrorSimpleContainer(
  1. {required ContainerType type,
  2. required String languageCode,
  3. String name = "Specchia croce",
  4. int position = 0,
  5. String direction = "horizontal"}
)

Implementation

MirrorSimpleContainer({
  required super.type,
  required super.languageCode,
  super.name = "Specchia croce",
  this.position = 0,
  this.direction = "horizontal",
});