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