UserProfile constructor

UserProfile({
  1. String? emailAddress,
  2. String? id,
  3. Name? name,
  4. List<GlobalPermission>? permissions,
  5. String? photoUrl,
  6. bool? verifiedTeacher,
})

Implementation

UserProfile({
  this.emailAddress,
  this.id,
  this.name,
  this.permissions,
  this.photoUrl,
  this.verifiedTeacher,
});