ParameterDoc constructor

ParameterDoc({
  1. required String name,
  2. required String type,
  3. String? description,
  4. bool isRequired = false,
  5. bool isNamed = false,
  6. bool isPositional = true,
  7. String? defaultValue,
})

Implementation

ParameterDoc({
  required this.name,
  required this.type,
  this.description,
  this.isRequired = false,
  this.isNamed = false,
  this.isPositional = true,
  this.defaultValue,
});