CrudOperationConfig constructor

const CrudOperationConfig({
  1. String? getOperationName = "Retrieve",
  2. String? postOperationName = "Create",
  3. String? putOperationName = "Update",
  4. String? deleteOperationName = "Destroy",
  5. String? patchOperationName = "PartialUpdate",
  6. String? getListOperationName = "List",
})

Implementation

const CrudOperationConfig({
  this.getOperationName = "Retrieve",
  this.postOperationName = "Create",
  this.putOperationName = "Update",
  this.deleteOperationName = "Destroy",
  this.patchOperationName = "PartialUpdate",
  this.getListOperationName = "List",
});