loadConfigFromPath static method

Config? loadConfigFromPath(
  1. String filePath,
  2. String prefixPath
)

Loads flutter launcher icons configs from given filePath

Implementation

static Config? loadConfigFromPath(String filePath, String prefixPath) {
  return _getConfigFromPubspecYaml(
    prefix: prefixPath,
    pathToPubspecYamlFile: filePath,
  );
}