toMap method
- @override
override
BaseOption => map
Implementation
@override
Map toMap() {
Map map = super.toMap();
map['coordTypeInput'] = this.coordTypeInput?.index;
map['vertexes'] = this.vertexes?.map((e) => e?.toMap())?.toList();
return map;
}