printUsage function
void
printUsage(
- ArgParser reportParser
Prints usage information for the report command.
Shows the report command syntax and all available options.
reportParser: The configured report argument parser.
Implementation
void printUsage(ArgParser reportParser) {
print('Usage: buggy report [options]');
print('');
print('Generate a coverage report from LCOV file.');
print('');
print('Options:');
print(reportParser.usage);
}