UserIndividual constructor

UserIndividual({
  1. int? userId,
  2. String? fullName,
  3. String? emailAddress,
  4. String? password,
  5. String? contactNumber,
})

Implementation

UserIndividual(
    {this.userId,
    this.fullName,
    this.emailAddress,
    this.password,
    this.contactNumber});