instance property

The default instance of TcmppFlutterLbsPlatform to use.

Defaults to MethodChannelTcmppFlutterLbs.

Implementation

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

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

Implementation

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