GoContainer constructor

GoContainer(
  1. {required String languageCode,
  2. String name = "Vai a",
  3. ContainerType type = ContainerType.go,
  4. String direction = "right",
  5. int repetitions = 1}
)

Implementation

GoContainer({
  required super.languageCode,
  super.name = "Vai a",
  super.type = ContainerType.go,
  this.direction = "right",
  super.repetitions = 1,
});