UserContext constructor

UserContext({
  1. String? pancard,
  2. String? fullName,
  3. String? gender,
  4. String? email,
  5. DateTime? dob,
  6. Address? address,
})

Implementation

UserContext({
  this.pancard,
  this.fullName,
  this.gender,
  this.email,
  this.dob,
  this.address,
});