Bounds.fromJson constructor

Bounds.fromJson(
  1. dynamic json
)

Implementation

Bounds.fromJson(dynamic json) {
  _northeast =
      json['northeast'] != null ? Location.fromJson(json['northeast']) : null;
  _southwest =
      json['southwest'] != null ? Location.fromJson(json['southwest']) : null;
}