toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'map_id'] = this.mapId;
json[r'name'] = this.name;
json[r'skin'] = this.skin;
json[r'x'] = this.x;
json[r'y'] = this.y;
json[r'layer'] = this.layer;
json[r'access'] = this.access;
json[r'interactions'] = this.interactions;
return json;
}