instance property

The default instance of FlutterFimberPlatform to use.

Defaults to MethodChannelFlutterFimber.

Implementation

static FlutterFimberPlatform get instance => _instance;
void 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;
}