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