instance property

OlaMapFlutterPlatform get instance

The default instance of OlaMapFlutterPlatform to use.

Defaults to MethodChannelOlaMapFlutter.

Implementation

static OlaMapFlutterPlatform get instance => _instance;
set instance (OlaMapFlutterPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends OlaMapFlutterPlatform when they register themselves.

Implementation

static set instance(OlaMapFlutterPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}