toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['height'] = this.height;
  data['id'] = this.id;
  data['name'] = this.name;
  data['rotation'] = this.rotation;
  data['type'] = this.type;
  data['visible'] = this.visible;
  data['width'] = this.width;
  data['x'] = this.x;
  data['y'] = this.y;
  if (this.properties != null) {
    data['properties'] = this.properties?.map((v) => v.toJson()).toList();
  }
  return data;
}