Permission constructor

Permission({
  1. bool? allowDiscovery,
  2. Anyone? anyone,
  3. Domain? domain,
  4. Group? group,
  5. String? role,
  6. User? user,
})

Implementation

Permission({
  this.allowDiscovery,
  this.anyone,
  this.domain,
  this.group,
  this.role,
  this.user,
});