instance property

AclasScalePlatform get instance

The default instance of AclasScalePlatform to use.

Defaults to MethodChannelAclasScale.

Implementation

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

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

Implementation

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