union method

LatLngBounds union(
  1. LatLngBounds other
)

return a new object from the union of this bounds and the given bounds.

Implementation

LatLngBounds union(LatLngBounds other)=>LatLngBounds(west: min<double> (other.west,west), east: max<double>(other.east, east), south: min<double>(other.south,south), north: max<double>(other.north,north));