CLICommand constructor

CLICommand()

Implementation

CLICommand() {
  argParser
    ..addFlag(
      'backup',
      help: 'Backup files.',
      negatable: false,
    )
    ..addFlag(
      'backup-db',
      help: 'Backup database.',
      negatable: false,
    )
    ..addFlag(
      'cleaner',
      help: 'Cleaner files without relations in db.',
      negatable: false,
    );
}