toJson method

Map<String, dynamic> toJson()

Implementation

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