toMap method

  1. @override
Map toMap ()

BaseOption => map

Implementation

@override
Map toMap() {
  Map map = super.toMap();
  map['entityName'] = this.entityName;
  map['processOption'] = this.processOption?.toMap();
  map['outputCoordType'] = this.outputCoordType?.index;
  return map;
}