toMap method
- @override
BaseOption => map
Implementation
@override
Map toMap() {
Map map = super.toMap();
map['entityName'] = this.entityName;
map['startTime'] = this.startTime;
map['endTime'] = this.endTime;
map['speedingThreshold'] = this.speedingThreshold;
map['thresholdOption'] = this.thresholdOption?.toMap();
map['processOption'] = this.processOption?.toMap();
map['outputCoordType'] = this.outputCoordType?.index;
return map;
}