Permission constructor

Permission({
  1. List<String>? access,
  2. String? grantee,
  3. String? granteeType,
})

Implementation

Permission({
  this.access,
  this.grantee,
  this.granteeType,
});