toMap method

  1. @override
Map toMap ()

BaseOption => map

Implementation

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