Permission constructor

Permission({
  1. bool? deleted,
  2. String? email,
  3. Family? family,
  4. Group? group,
  5. String? name,
  6. String? role,
  7. User? user,
})

Implementation

Permission({
  this.deleted,
  this.email,
  this.family,
  this.group,
  this.name,
  this.role,
  this.user,
});