instance property

FlipperUtilPlatform get instance

The default instance of FlipperUtilPlatform to use.

Defaults to MethodChannelFlipperUtil.

Implementation

static FlipperUtilPlatform get instance => _instance;
set instance (FlipperUtilPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends FlipperUtilPlatform when they register themselves.

Implementation

static set instance(FlipperUtilPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}