HistoryCommand constructor
HistoryCommand()
Implementation
HistoryCommand() {
argParser
..addOption(
'client',
abbr: 'c',
help: 'Only show history for a specific client.',
)
..addOption(
'limit',
abbr: 'n',
defaultsTo: '10',
help: 'Number of most recent builds to show.',
)
..addFlag(
'clear',
negatable: false,
help: 'Clear all recorded build history for this project.',
);
}