newPubspecYamlFile method
Writes a pubspec.yaml file at directoryPath with content.
Implementation
File newPubspecYamlFile(String directoryPath, String content) {
String path = join(directoryPath, file_paths.pubspecYaml);
return newFile(path, content);
}