runCommand static method
Implementation
static Future<int> runCommand({
required String unknownCommand,
required Logger logger,
required String helpHint,
}) async {
logger.log('Unknown command: $unknownCommand', level: 'error');
logger.log('Use `mono $helpHint`', level: 'error');
return 1;
}