instance property

The default instance of MsalAuthFlutterPlatform to use.

Defaults to MethodChannelMsalAuthFlutter.

Implementation

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

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

Implementation

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