Region.fromMap constructor

Region.fromMap(
  1. Map map
)

Implementation

Region.fromMap(Map map)
    : this.center = GeoPoint.fromMap(map["center"]),
      this.boundingBox = BoundingBox.fromMap(map["bounding"]);