DartnessParam constructor

DartnessParam(
  1. String name,
  2. bool isQuery,
  3. bool isPath,
  4. bool isBody,
  5. bool isNamed,
  6. bool isPositional,
  7. bool isOptional,
  8. Type type,
  9. {dynamic defaultValue,
  10. Function? fromJson}
)

Implementation

DartnessParam(
  this.name,
  this.isQuery,
  this.isPath,
  this.isBody,
  this.isNamed,
  this.isPositional,
  this.isOptional,
  this.type, {
  this.defaultValue,
  this.fromJson,
});