MmUser constructor

MmUser({
  1. String? id,
  2. int? createAt,
  3. int? updateAt,
  4. int? deleteAt,
  5. String? username,
  6. String? firstName,
  7. String? lastName,
  8. String? nickname,
  9. String? email,
  10. bool? emailVerified,
  11. String? authService,
  12. String? roles,
  13. String? locale,
  14. MmUserNotifyProps? notifyProps,
  15. Map? props,
  16. int? lastPasswordUpdate,
  17. int? lastPictureUpdate,
  18. int? failedAttempts,
  19. bool? mfaActive,
  20. MmTimezone? timezone,
  21. String? termsOfServiceId,
  22. int? termsOfServiceCreateAt,
})

Returns a new MmUser instance.

Implementation

MmUser({
  this.id,
  this.createAt,
  this.updateAt,
  this.deleteAt,
  this.username,
  this.firstName,
  this.lastName,
  this.nickname,
  this.email,
  this.emailVerified,
  this.authService,
  this.roles,
  this.locale,
  this.notifyProps,
  this.props,
  this.lastPasswordUpdate,
  this.lastPictureUpdate,
  this.failedAttempts,
  this.mfaActive,
  this.timezone,
  this.termsOfServiceId,
  this.termsOfServiceCreateAt,
});