isNeedingNewWebIcon function

bool isNeedingNewWebIcon(
  1. Map<String, dynamic> platforms
)

Checks if the config need linux.

Implementation

bool isNeedingNewWebIcon(Map<String, dynamic> platforms) {
  return hasWebConfig(platforms) &&
      (platforms['web'] as Map<String, dynamic>)['enable'] == true;
}