DartnessParam constructor

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

Implementation

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