UpdateYearCommand constructor

UpdateYearCommand({
  1. required Project project,
  2. required Printer printer,
  3. required DateTime now,
})

Implementation

UpdateYearCommand({
  required this.project,
  required this.printer,
  required this.now,
}) {
  argParser.addOption(
    'license',
    help: 'specify a file to update',
    abbr: 'l',
  );
  argParser.addOption(
    'file',
    help: 'specify a file to update',
    abbr: 'f',
  );
}