getAndroidIconPath function

String getAndroidIconPath(
  1. Map<String, dynamic> config
)

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'];
}