instance property

DingtalkAuthPlatform get instance

The default instance of DingtalkAuthPlatform to use.

Defaults to MethodChannelDingtalkAuth.

Implementation

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

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

Implementation

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