Geo.fromJson constructor
Implementation
factory Geo.fromJson(Map<String, dynamic> json) {
return Geo(
coordinate: Coordinate.fromJson(json['coordinate']),
maxCoordinate: Coordinate.fromJson(json['maxCoordinate']),
minCoordinate: Coordinate.fromJson(json['minCoordinate']),
);
}