Permission constructor
Permission({
- String name = '',
- Permission_GranteeType? granteeType,
- String? emailAddress,
- required Permission_Role? role,
Implementation
Permission({
this.name = '',
this.granteeType,
this.emailAddress,
required this.role,
}) : super(fullyQualifiedName);