instance property

The default ContactPickerPlatform to use.

Defaults to MethodChannelContactPicker

Implementation

static ContactPickerPlatform get instance => _instance;
void instance=(ContactPickerPlatform instance)

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

Implementation

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