toMap method

  1. @override
Map toMap ()
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;
}