toMap method
Implementation
Map<String, dynamic> toMap() {
final data = <String, dynamic>{};
data['bounds'] = bounds.toList();
data['mapStyleUrl'] = mapStyleUrl;
data['minZoom'] = minZoom;
data['maxZoom'] = maxZoom;
data['includeIdeographs'] = includeIdeographs;
return data;
}