toMap method
- @override
model -> map
Implementation
@override
Map<String, Object> toMap() {
return {
'keywords': this.keywords?.map((e) => e)?.toList(),
'tags': this.tags?.map((e) => e)?.toList(),
'leftBottom': this.leftBottom?.toMap(),
'rightTop': this.rightTop?.toMap(),
'scope': this.scope.index,
'filter': this.filter?.toMap(),
'pageIndex': this.pageIndex,
'pageSize': this.pageSize
};
}