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