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