instance property

The default instance of WebexFlutterPluginPlatform to use.

Defaults to MethodChannelWebexFlutterPlugin.

Implementation

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

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

Implementation

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