instance property

The default instance of DroidDexFlutterPlatform to use.

Defaults to MethodChannelDroidDexFlutter.

Implementation

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

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

Implementation

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