ReleasePacker.fromFilePath constructor
ReleasePacker.fromFilePath(})
Implementation
factory ReleasePacker.fromFilePath(
String filePath, {
Map<String, String>? properties,
Directory? rootDirectory,
bool allowPropertiesFromEnv = false,
}) {
var file = _toFile(filePath, rootDirectory);
return ReleasePacker.fromFile(file,
properties: properties,
rootDirectory: rootDirectory,
allowPropertiesFromEnv: allowPropertiesFromEnv);
}