RoleLevelSecurityModel constructor

const RoleLevelSecurityModel({
  1. bool? read,
  2. bool? write,
  3. bool? update,
  4. bool? delete,
  5. String? uid,
})

Implementation

const RoleLevelSecurityModel({
  this.read,
  this.write,
  this.update,
  this.delete,
  this.uid,
});