DocumentParameter constructor

DocumentParameter({
  1. String? defaultValue,
  2. String? description,
  3. String? name,
  4. DocumentParameterType? type,
})

Implementation

DocumentParameter({
  this.defaultValue,
  this.description,
  this.name,
  this.type,
});