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