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