disableTile static method
Disable the service associated with your Tile. Your tile will be removed from the list of third party tiles and from the Quick Settings panel.
Implementation
static Future<void> disableTile() async {
if (!kIsWeb && Platform.isAndroid) {
await _instance.disableTile();
}
}