NicePermission constructor

NicePermission({
  1. required String role,
  2. required String action,
  3. bool allowed = false,
})

Implementation

NicePermission({
  required this.role,
  required this.action,
  this.allowed = false,
});