readme property
File
get
readme
Implementation
File get readme {
final file = File('${directory.path}/README.md');
if (file.existsSync()) {
return file;
}
throw Exception('Readme of "$name" package not found.');
}