instance property

The default instance of WoofCommonPluginPlatform to use.

Defaults to MethodChannelWoofCommonPlugin.

Implementation

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

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

Implementation

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