Bounds.fromJson constructor

Bounds.fromJson(
  1. Map<String, dynamic> json
)

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"]),
);