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