instance property

OSMPlatform instance

Implementation

static OSMPlatform get instance => _instance;
void instance=(OSMPlatform instance)

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

Implementation

static set instance(OSMPlatform instance) {
  PlatformInterface.verifyToken(instance, token);
  _instance = instance;
}