getAlternateIconName static method
Fetches the current iconName
Returns null if the current icon is the default icon
Implementation
static Future<String?> getAlternateIconName() async {
final String? altIconName = await _channel.invokeMethod(
'mGetAlternateIconName',
);
return altIconName;
}