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);
}