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