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