instance property
FlutterPreventNapPlatform
get
instance
The default instance of FlutterPreventNapPlatform to use.
Defaults to MethodChannelFlutterPreventNap.
Implementation
static FlutterPreventNapPlatform get instance => _instance;
set
instance
(FlutterPreventNapPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends FlutterPreventNapPlatform when they register themselves.
Implementation
static set instance(FlutterPreventNapPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}