toMap method

  1. @override
Map toMap ()

BaseOption => map

Implementation

@override
Map toMap() {
  Map map = super.toMap();
  map['searchFilterCondition'] = this.searchFilterCondition?.toMap();
  map['sortBy'] = this.sortBy?.toMap();
  map['coordType'] = this.coordType?.index;
  map['pageIndex'] = this.pageIndex;
  map['pageSize'] = this.pageSize;
  return map;
}