instance property

LwPluginPlatform get instance

The default instance of LwPluginPlatform to use.

Defaults to MethodChannelLwPlugin.

Implementation

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

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

Implementation

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