StringArgument constructor

const StringArgument({
  1. String? short,
  2. dynamic long,
  3. String? help,
  4. bool? isRequired,
  5. List? mustBeOneOf,
  6. String? environmentVariable,
})

Implementation

const StringArgument({
  String? short,
  dynamic long,
  String? help,
  bool? isRequired,
  this.mustBeOneOf,
  String? environmentVariable,
}) : super(
        short: short,
        long: long,
        help: help,
        isRequired: isRequired,
        environmentVariable: environmentVariable,
      );