PatientAddress constructor

PatientAddress({
  1. String? receiverName,
  2. String? street,
  3. String? streetNumber,
  4. String? city,
  5. String? state,
  6. String? zip,
  7. String? country,
  8. String? phoneNumber,
})

Implementation

PatientAddress({
  this.receiverName,
  this.street,
  this.streetNumber,
  this.city,
  this.state,
  this.zip,
  this.country,
  this.phoneNumber,
});