User constructor

User({
  1. String? displayName,
  2. String? emailAddress,
  3. String? kind,
  4. bool? me,
  5. String? permissionId,
  6. String? photoLink,
})

Implementation

User({
  this.displayName,
  this.emailAddress,
  this.kind,
  this.me,
  this.permissionId,
  this.photoLink,
});