toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['height'] = this.height;
data['id'] = this.id;
data['gid'] = this.gid;
data['ellipse'] = this.ellipse;
data['point'] = this.point;
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();
}
if (this.text != null) {
data['text'] = this.text?.toJson();
}
if (this.polygon != null) {
data['polygon'] = this.polygon?.map((v) => v.toJson()).toList();
}
if (this.polyline != null) {
data['polyline'] = this.polyline?.map((v) => v.toJson()).toList();
}
return data;
}