toMap method

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

model -> map

Implementation

@override
Map<String, Object> toMap() {
  return {
    'location': this.location?.toMap(),
    'radius': this.radius,
    'keyword': this.keyword,
    'appScheme': this.appScheme,
    'isSupportWeb': this.isSupportWeb
  };
}