init method
void
init({})
Initializes the plugin and sets up the necessary event listeners. This method should be called when the plugin object is constructed.
Implementation
void init({
void Function()? onMapReady,
void Function(double latitude, double longitude)? onMapClick,
void Function()? onMapRendered,
void Function()? onStyleLoaded,
}) {
throw UnimplementedError('init() has not been implemented.');
}