CheckSMFPatientResult constructor

CheckSMFPatientResult({
  1. required String firstName,
  2. required String lastName,
  3. required String ssin,
  4. int? dateOfBirth,
  5. required bool exists,
  6. String? existingPatientId,
})

Returns a new CheckSMFPatientResult instance.

Implementation

CheckSMFPatientResult({
  required this.firstName,
  required this.lastName,
  required this.ssin,
  this.dateOfBirth,
  required this.exists,
  this.existingPatientId,
});