instance property

The default instance of ScreenBrightnessProPlatform to use.

Defaults to MethodChannelScreenBrightnessPro.

Implementation

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

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

Implementation

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