toMap method

  1. @override
Map<String, Object> toMap ()

model -> map

Implementation

@override
Map<String, Object> toMap() {
  return {
    'totalPOINum': this.totalPOINum,
    'totalPageNum': this.totalPageNum,
    'curPOINum': this.curPOINum,
    'curPageIndex': this.curPageIndex,
    'poiIndoorInfoList':
        this.poiIndoorInfoList?.map((e) => e?.toMap())?.toList()
  };
}