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