Bounds.fromJson constructor
Implementation
factory Bounds.fromJson(Map<String, dynamic> json) => Bounds(
northeast:
json["northeast"] == null ? null : Location.fromJson(json["northeast"]),
southwest:
json["southwest"] == null ? null : Location.fromJson(json["southwest"]),
);