CliOpt constructor

CliOpt(
  1. CliOptDef optDef, {
  2. String? fullName,
  3. int argNo = -1,
})

The constructor

Implementation

CliOpt(this.optDef, {String? fullName, this.argNo = -1}) {
  this.fullName = fullName ?? '';
}