instance property

HeheheFlutterPlatform get instance

The default instance of HeheheFlutterPlatform to use.

Defaults to MethodChannelHeheheFlutter.

Implementation

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

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

Implementation

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