LatLngBounds.fromJson constructor

LatLngBounds.fromJson(
  1. Map json_
)

Implementation

LatLngBounds.fromJson(core.Map json_)
    : this(
        northeast: json_.containsKey('northeast')
            ? LatLng.fromJson(
                json_['northeast'] as core.Map<core.String, core.dynamic>)
            : null,
        southwest: json_.containsKey('southwest')
            ? LatLng.fromJson(
                json_['southwest'] as core.Map<core.String, core.dynamic>)
            : null,
      );