instance property

The default instance of LivechatSdkFlutterPlatform to use.

Defaults to MethodChannelLivechatSdkFlutter.

Implementation

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

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

Implementation

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