Parameter constructor

const Parameter({
  1. required String name,
  2. required String inLocation,
  3. String? description,
  4. bool? required,
  5. bool? deprecated,
  6. Map<String, dynamic>? schema,
  7. Type? type,
  8. bool? allowEmptyValue,
  9. String? style,
  10. bool? explode,
  11. bool? allowReserved,
  12. Object? example,
})

Implementation

const Parameter({
  required this.name,
  required this.inLocation,
  this.description,
  this.required,
  this.deprecated,
  this.schema,
  this.type,
  this.allowEmptyValue,
  this.style,
  this.explode,
  this.allowReserved,
  this.example,
});