instance property
ChatBubbleTcPlatform
get
instance
The default instance of ChatBubbleTcPlatform to use.
Defaults to MethodChannelChatBubbleTc.
Implementation
static ChatBubbleTcPlatform get instance => _instance;
set
instance
(ChatBubbleTcPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends ChatBubbleTcPlatform when they register themselves.
Implementation
static set instance(ChatBubbleTcPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}