instance property

SmartLocationPlatform get instance

The default instance of SmartLocationPlatform to use.

Defaults to MethodChannelSmartLocation.

Implementation

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

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

Implementation

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