instance property

The default instance of OpusFlutterPlatform to use, defaults to OpusFlutterPlatformUnsupported.

Implementation

static OpusFlutterPlatform get instance => _instance;
void instance=(OpusFlutterPlatform instance)

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

Implementation

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