DecompressCommand constructor

DecompressCommand()

Implementation

DecompressCommand() {
  argParser
    ..addOption(
      'input-file-path',
      abbr: 'i',
      help: 'Specify path to input compressed file',
    )
    ..addOption('output-file-path',
        abbr: 'o',
        defaultsTo: Directory.current.path,
        help: 'Specify path to store decompressed file');
}