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