supportsAlternateIcons property
Checks if the current platform supports dynamic icon switching.
Implementation
@override
Future<bool> get supportsAlternateIcons async {
final supported = await methodChannel.invokeMethod<bool>('supportsAlternateIcons');
return supported ?? false;
}