forEachLatLng method

void forEachLatLng(
  1. void callback(
    1. LatLng?
    )?
)

Implementation

void forEachLatLng(void Function(LatLng?)? callback) {
  callMethod(this, 'forEachLatLng',
      [callback == null ? null : allowInterop(callback)]);
}