CreatePipeCommand constructor

CreatePipeCommand({
  1. required FileSystem fs,
  2. required Logger logger,
})

Implementation

CreatePipeCommand({required super.fs, required super.logger}) {
  argParser
    ..addOption(
      'return-type',
      abbr: 'r',
      help: 'The return type of the pipe',
      valueHelp: 'return-type',
    )
    ..addOption(
      'input-type',
      abbr: 'i',
      help: 'The input type of the pipe',
      valueHelp: 'input-type',
    );
}