isYaml function

bool isYaml(
  1. String path
)

Implementation

bool isYaml(String path) {
  return path.endsWith('.yaml');
}