ResourcePermissions constructor

const ResourcePermissions({
  1. bool viewAny = false,
  2. bool view = false,
  3. bool create = false,
  4. bool update = false,
  5. bool delete = false,
})

Implementation

const ResourcePermissions({
  this.viewAny = false,
  this.view = false,
  this.create = false,
  this.update = false,
  this.delete = false,
});