toMap method

  1. @override
Map toMap ()
override

BaseOption => map

Implementation

@override
Map toMap() {
  Map map = super.toMap();
  map['lowerLeft'] = this.lowerLeft?.toMap();
  map['upperRight'] = this.upperRight?.toMap();
  map['coordTypeInput'] = this.coordTypeInput?.index;
  return map;
}