ParameterOpenApi constructor

const ParameterOpenApi({
  1. String? description,
  2. Object? example,
  3. required String name,
  4. required ParameterInOpenApi in$,
  5. bool required = false,
  6. bool deprecated = false,
  7. String? style,
  8. bool? explode,
  9. required SchemaOpenApi? schema,
  10. Map<String, dynamic> examples = const {},
})

Implementation

const ParameterOpenApi({
  this.description,
  this.example,
  required this.name,
  required this.in$,
  this.required = false,
  this.deprecated = false,
  this.style,
  this.explode,
  required this.schema,
  this.examples = const {},
});