Permission constructor

Permission({
  1. String name = '',
  2. Permission_GranteeType? granteeType,
  3. String? emailAddress,
  4. required Permission_Role? role,
})

Implementation

Permission({
  this.name = '',
  this.granteeType,
  this.emailAddress,
  required this.role,
}) : super(fullyQualifiedName);