DartdocOptionArgFile<T> constructor

DartdocOptionArgFile<T>(
  1. String name,
  2. T defaultsTo,
  3. ResourceProvider resourceProvider,
  4. {bool mustExist = false,
  5. String help = '',
  6. OptionKind optionIs = OptionKind.other,
  7. bool negatable = false,
  8. bool splitCommas = false}
)

Implementation

DartdocOptionArgFile(
    String name, T defaultsTo, ResourceProvider resourceProvider,
    {bool mustExist = false,
    String help = '',
    OptionKind optionIs = OptionKind.other,
    this.negatable = false,
    this.splitCommas = false})
    : super(name, defaultsTo, help, optionIs, mustExist, null,
          resourceProvider);