createIconsLauncher function

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

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