loadConfigFromFlavor static method

FlutterLauncherIconsConfig? loadConfigFromFlavor(
  1. String flavor,
  2. String prefixPath
)

Creates FlutterLauncherIconsConfig for given flavor and prefixPath

Implementation

static FlutterLauncherIconsConfig? loadConfigFromFlavor(
  String flavor,
  String prefixPath,
) {
  return FlutterLauncherIconsConfig.loadConfigFromPath(
    utils.flavorConfigFile(flavor),
    prefixPath,
  );
}