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