User constructor

const User({
  1. String? uid,
  2. String? username,
  3. String? nickname,
  4. String? email,
  5. String? mobile,
  6. String? avatar,
  7. String? description,
  8. String? platform,
  9. bool? enabled,
  10. bool? superUser,
  11. bool? emailVerified,
  12. bool? mobileVerified,
  13. Organiztion? currentOrganization,
})

Implementation

const User({
  this.uid,
  this.username,
  this.nickname,
  this.email,
  this.mobile,
  this.avatar,
  this.description,
  this.platform,
  this.enabled,
  this.superUser,
  this.emailVerified,
  this.mobileVerified,
  this.currentOrganization,
});