createIconsLauncher function

void createIconsLauncher({
  1. String? path,
  2. String? flavor,
})

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);
}