instance property

FlyChatFlutterPlatform get instance

The default instance of FlyChatFlutterPlatform to use.

Defaults to MethodChannelUikitFlutter.

Implementation

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

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

Implementation

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