toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  Map<String, dynamic> map = {
    "geobound": geoBound,
  };
  if (style != null) {
    map['style'] = style?.toJson();
  }
  return map;
}