instance property
AclSdkPlatform
get
instance
The default instance of AclSdkPlatform to use.
Defaults to MethodChannelAclSdk.
Implementation
static AclSdkPlatform get instance => _instance;
set
instance
(AclSdkPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends AclSdkPlatform when they register themselves.
Implementation
static set instance(AclSdkPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}