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