GroupMember constructor

GroupMember({
  1. String? id,
  2. String? displayName,
  3. String? userPrincipalName,
  4. String? mail,
})

Implementation

GroupMember({
  this.id,
  this.displayName,
  this.userPrincipalName,
  this.mail,
});