hasIOSConfig function

bool hasIOSConfig(
  1. Map<String, dynamic> iconsLauncherConfig
)

Checks if the config has ios.

Implementation

bool hasIOSConfig(Map<String, dynamic> iconsLauncherConfig) {
  return iconsLauncherConfig.containsKey('ios');
}