Consult constructor

const Consult({
  1. String firstName = '',
  2. String lastName = '',
  3. int phoneNumber = 0,
  4. String chiefComplaint = '',
  5. String clinicalFindings = '',
  6. String treatmentPlan = '',
  7. String pregnancyHistory = '',
  8. String symptomsAndComplaints = '',
  9. String careRecommendations = '',
})

Implementation

const Consult({
  this.firstName = '',
  this.lastName = '',
  this.phoneNumber = 0,
  this.chiefComplaint = '',
  this.clinicalFindings = '',
  this.treatmentPlan = '',
  this.pregnancyHistory = '',
  this.symptomsAndComplaints = '',
  this.careRecommendations = '',
});