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