Param constructor

const Param({
  1. required String name,
  2. String? flags,
  3. String? description,
  4. String? defaultValue,
  5. String? type,
  6. List<String>? values,
  7. bool isTypeExplicit = false,
})

Implementation

const Param({
  required this.name,
  this.flags,
  this.description,
  this.defaultValue,
  this.type,
  this.values,
  this.isTypeExplicit = false,
});