doctor function
process of doctor
Implementation
Future<void> doctor() async {
final yaml = readCometYaml();
if (yaml == null) {
print('Not found $cometYamlName');
return;
}
var problems = 0;
/* check something here */
if (problems == 0) {
print('No Problems found');
}
}