NLatLngBounds.fromJson constructor
Implementation
factory NLatLngBounds.fromJson(Map<String, dynamic> json) {
return NLatLngBounds(
southWest: NLatLng.fromJson(json['southWest'] ?? {}),
northEast: NLatLng.fromJson(json['northEast'] ?? {}),
);
}