ItemPathOpenApi constructor

const ItemPathOpenApi({
  1. String? summary,
  2. String? description,
  3. OperationOpenApi? get,
  4. OperationOpenApi? put,
  5. OperationOpenApi? post,
  6. OperationOpenApi? delete,
  7. OperationOpenApi? head,
  8. OperationOpenApi? patch,
})

Implementation

const ItemPathOpenApi({
  this.summary,
  this.description,
  this.get,
  this.put,
  this.post,
  this.delete,
  this.head,
  this.patch,
});