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