isNeedingNewMacOSIcon function

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

Checks if the config need macos.

Implementation

bool isNeedingNewMacOSIcon(Map<String, dynamic> iconsLauncherConfig) {
  return hasMacOSConfig(iconsLauncherConfig) &&
      iconsLauncherConfig['macos'] != false;
}