instance property

MapcontrolPlatform get instance

The default instance of MapcontrolPlatform to use.

Defaults to MethodChannelMapControl.

Implementation

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

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

Implementation

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