instance property

ZendeskClassicPlatform get instance

The default instance of ZendeskClassicPlatform to use.

Defaults to MethodChannelZendeskClassic.

Implementation

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

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

Implementation

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