instance property

The default instance of BkclientFlutterPlatform to use.

Defaults to MethodChannelBkclientFlutter.

Implementation

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

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

Implementation

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