isCustomAndroidFile function

bool isCustomAndroidFile(
  1. Map<String, dynamic> config
)

Check to see if specified Android config is a string or bool String - Generate new launcher icon with the string specified bool - override the default flutter project icon

Implementation

bool isCustomAndroidFile(Map<String, dynamic> config) {
  final dynamic androidConfig = config['android'];
  return androidConfig is String;
}