toMap method

  1. @override
Map<String, Object> toMap ()
override

model -> map

Implementation

@override
Map<String, Object> toMap() {
  return {
    'id': this.getId(),
    'coordinates': this.coordinates?.map((coord) => coord?.toMap())?.toList(),
    'width': this.width,
    'strokeColor': this.strokeColor?.value?.toRadixString(16),
    'lineDashType': this.lineDashType.index,
    'zIndex': this.zIndex,
    'visible': this.visible
  };
}