Prefill constructor

Prefill({
  1. PrefillAddress? address,
  2. String? email,
  3. String? dob,
  4. String? ssn,
  5. String? firstName,
  6. String? lastName,
  7. String? midName,
  8. String? phone,
})

Implementation

Prefill({
  this.address,
  this.email,
  this.dob,
  this.ssn,
  this.firstName,
  this.lastName,
  this.midName,
  this.phone,
});