instance property

GroupContactsPlatform get instance

The default instance of GroupContactsPlatform to use.

Defaults to MethodChannelGroupContacts.

Implementation

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

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

Implementation

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