getAndroidIconPath function
Method for the retrieval of the Android icon path If image_path_android is found, this will be prioritised over the image_path value.
Implementation
String getAndroidIconPath(Map<String, dynamic> config) {
return config['image_path_android'] ?? config['image_path'];
}