instance property

WebBoostPluginPlatform get instance

The default instance of WebBoostPluginPlatform to use.

Defaults to MethodChannelWebBoostPlugin.

Implementation

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

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

Implementation

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