extend method

void extend(
  1. LatLng latlng
)

Expands bounding box by latlng coordinate point. This method mutates the bounds object on which it is called.

Implementation

void extend(LatLng latlng) {
  _extend(latlng, latlng);
}