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) {
  if (latlng == null) {
    return;
  }
  _extend(latlng, latlng);
}