toMap method
- @override
override
model -> map
Implementation
@override
Map<String, Object?> toMap() {
return Map.from(super.toMap())
..addAll({
'keyword': this.keyword,
'cityname': this.cityname,
'location': this.location?.toMap(),
'cityLimit': this.cityLimit
});
}