DiffCommand constructor

DiffCommand()

Implementation

DiffCommand() {
  argParser
    ..addOption(
      'client-a',
      abbr: 'a',
      mandatory: true,
      help: 'First client to compare.',
    )
    ..addOption(
      'client-b',
      abbr: 'b',
      mandatory: true,
      help: 'Second client to compare.',
    )
    ..addFlag(
      'test',
      negatable: false,
      help: 'Compare .env_test files instead of .env.',
    )
    ..addFlag(
      'all',
      negatable: false,
      help: 'Show every key, including ones that match.',
    );
}