BeaSingleUser constructor

BeaSingleUser({
  1. String? name,
  2. String? surname,
  3. String? userName,
  4. String? fullName,
  5. String? emailAddress,
  6. bool? isEmailConfirmed,
  7. DateTime? lastLoginTime,
  8. bool? isActive,
  9. DateTime? creationTime,
  10. int? id,
})

Implementation

BeaSingleUser(
    {this.name,
      this.surname,
      this.userName,
      this.fullName,
      this.emailAddress,
      this.isEmailConfirmed,
      this.lastLoginTime,
      this.isActive,
      this.creationTime,
      this.id});