toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final boundary = this.boundary;
  final cachePolicy = this.cachePolicy;
  final countryCode = this.countryCode;
  final latitude = this.latitude;
  final longitude = this.longitude;
  final mapType = this.mapType;
  final viewport = this.viewport;
  final zoom = this.zoom;
  return {
    'boundary': ?boundary,
    'cachePolicy': ?cachePolicy,
    'countryCode': ?countryCode,
    'latitude': ?latitude,
    'longitude': ?longitude,
    'mapType': ?mapType,
    'viewport': ?viewport,
    'zoom': ?zoom,
  };
}