CubeUser constructor

CubeUser({
  1. int? id,
  2. String? login,
  3. String? email,
  4. String? password,
  5. String? fullName,
  6. String? phone,
  7. String? website,
  8. int? externalId,
  9. String? facebookId,
  10. String? twitterId,
  11. Set<String>? tags,
  12. String? oldPassword,
  13. String? customData,
  14. String? avatar,
  15. dynamic customDataClass,
  16. bool? isGuest,
  17. int? timeZone,
})

Implementation

CubeUser(
    {int? id,
    this.login,
    this.email,
    this.password,
    this.fullName,
    this.phone,
    this.website,
    this.externalId,
    this.facebookId,
    this.twitterId,
    this.tags,
    this.oldPassword,
    this.customData,
    this.avatar,
    this.customDataClass,
    this.isGuest,
    this.timeZone}) {
  this.id = id;
}