FileArgument constructor

const FileArgument(
  1. {String? short,
  2. dynamic long,
  3. String? help,
  4. bool? isRequired,
  5. bool mustExist = false,
  6. String? environmentVariable}
)

Implementation

const FileArgument({
  String? short,
  dynamic long,
  String? help,
  bool? isRequired,
  this.mustExist = false,
  String? environmentVariable,
}) : super(
        short: short,
        long: long,
        help: help,
        isRequired: isRequired,
        environmentVariable: environmentVariable,
      );