User constructor

User({
  1. String? userId,
  2. String? email,
  3. VerificationType? isEmailVerified,
  4. String? phoneUser,
  5. VerificationType? isPhoneVerified,
  6. Address? address,
  7. VerificationType? isKYCVerified,
  8. int? registrationDate,
})

Implementation

User(
    {this.userId,
    this.email,
    this.isEmailVerified,
    this.phoneUser,
    this.isPhoneVerified,
    this.address,
    this.isKYCVerified,
    this.registrationDate});