ApiBodyField<T> constructor

ApiBodyField<T>(
  1. String name, {
  2. Object? def,
  3. String? description,
  4. bool isRequired = false,
})

Implementation

ApiBodyField(
  this.name, {
  this.def,
  this.description,
  this.isRequired = false,
});