Arguments constructor

const Arguments({
  1. required bool showVersion,
  2. required bool showHelp,
  3. required bool isVerbose,
})

Implementation

const Arguments({
  required this.showVersion,
  required this.showHelp,
  required this.isVerbose,
});