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