createIconsLauncher function
Create launcher icons
Implementation
void createIconsLauncher({String? path, String? flavor}) {
if (flavor != null) {
print('\nš± Starting with $flavor flavor š\n');
}
_flavorHelper = _FlavorHelper(flavor);
final config = _getConfig(configFile: path);
_checkConfig(config);
_createIconsByConfig(config);
}