isLockManifestOutput function

bool isLockManifestOutput(
  1. String outputPath
)

Implementation

bool isLockManifestOutput(String outputPath) {
  return outputPath.endsWith('.lock.yaml') || outputPath.endsWith('.lock.yml');
}