ApiParameter<T> constructor

ApiParameter<T>(
  1. String name, {
  2. Object? def,
  3. String? description,
  4. bool isRequired = false,
  5. ParamIn paramIn = ParamIn.query,
})

Implementation

ApiParameter(
  this.name, {
  this.def,
  this.description,
  this.isRequired = false,
  this.paramIn = ParamIn.query,
});