instance property

The default instance of AutologinAndroidPlatform to use.

Defaults to MethodChannelAutologinAndroid.

Implementation

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

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

Implementation

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