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