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