instance property

The default instance of OpenSettingsPlusPlatform to use.

Defaults to MethodChannelOpenSettingsPlus.

Implementation

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

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

Implementation

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