MapSchema constructor

MapSchema({
  1. required String name,
  2. required String skin,
  3. required int x,
  4. required int y,
  5. required MapContentSchema? content,
})

Returns a new MapSchema instance.

Implementation

MapSchema({
  required this.name,
  required this.skin,
  required this.x,
  required this.y,
  required this.content,
});