BoundingBox.fromMap constructor

BoundingBox.fromMap(
  1. Map map
)

Implementation

BoundingBox.fromMap(Map map)
    : this.north = map["north"],
      this.east = map["east"],
      this.south = map["south"],
      this.west = map["west"];