instance property

The default instance of OrganizationFeaturePlatform to use.

Defaults to MethodChannelOrganizationFeature.

Implementation

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

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

Implementation

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