instance property

The default instance of FlutterCallkitWebPlatform to use.

Defaults to MethodChannelFlutterCallkitWeb.

Implementation

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

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

Implementation

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