ControllerMethodParam constructor

const ControllerMethodParam(
  1. String name,
  2. Type type, {
  3. RequestAnnotation? meta,
  4. bool optional = false,
  5. dynamic defaultValue,
  6. BaseDTO? dto,
})

Implementation

const ControllerMethodParam(
  this.name,
  this.type, {
  this.meta,
  this.optional = false,
  this.defaultValue,
  this.dto,
});