zoomToFit method

void zoomToFit(
  1. Iterable<LatLng> locations
)

Implementation

void zoomToFit(Iterable<LatLng> locations) {
  if (locations.isNotEmpty) {
    if (zoomListener != null) zoomListener!(locations);
  }
}