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