instance property

The default instance of ZendeskHelpcenterPlatform to use.

Defaults to MethodChannelZendeskHelpcenter.

Implementation

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

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

Implementation

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