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