loadConfigFromPath static method

Config? loadConfigFromPath(
  1. String filePath
)

Loads flutter configs from given filePath

Implementation

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