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