Grantee constructor

Grantee({
  1. required Type type,
  2. String? displayName,
  3. String? emailAddress,
  4. String? id,
  5. String? uri,
})

Implementation

Grantee({
  required this.type,
  this.displayName,
  this.emailAddress,
  this.id,
  this.uri,
});