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