BoundingBox constructor
const
BoundingBox({})
Implementation
const BoundingBox({
required this.north,
required this.east,
required this.south,
required this.west,
}) : assert(north <= 86.0),
assert(east <= 180.0),
assert(south >= -86.0),
assert(west >= -180.0);