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