ApiParameter constructor

const ApiParameter({
  1. required String name,
  2. required String location,
  3. required String type,
  4. bool required = false,
  5. String? description,
  6. dynamic example,
})

Implementation

const ApiParameter({
  required this.name,
  required this.location,
  required this.type,
  this.required = false,
  this.description,
  this.example,
});