instance property

BlinkidFlutterPlatform get instance

The default instance of BlinkidFlutterPlatform to use.

Defaults to MethodChannelBlinkidFlutter.

Implementation

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

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

Implementation

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