toMap method
- @override
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()
};
}