instance property

MsAuthLoginPlatform get instance

The default instance of MsAuthLoginPlatform to use.

Defaults to MethodChannelMsAuthLogin.

Implementation

static MsAuthLoginPlatform get instance => _instance;
set instance (MsAuthLoginPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends MsAuthLoginPlatform when they register themselves.

Implementation

static set instance(MsAuthLoginPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}