DartdocOptionArgSynth<T> constructor

DartdocOptionArgSynth<T>(
  1. String name,
  2. T _compute(
    1. DartdocSyntheticOption<T>,
    2. Folder
    ),
  3. ResourceProvider resourceProvider, {
  4. String? abbr,
  5. bool mustExist = false,
  6. String help = '',
  7. OptionKind optionIs = OptionKind.other,
  8. bool negatable = false,
})

Implementation

DartdocOptionArgSynth(
  String name,
  this._compute,
  ResourceProvider resourceProvider, {
  this.abbr,
  bool mustExist = false,
  String help = '',
  OptionKind optionIs = OptionKind.other,
  this.negatable = false,
}) : super(name, null, help, optionIs, mustExist, null, resourceProvider);