Plan constructor

Plan({
  1. String? nonPharmacologicalIntervention,
  2. String? medications,
  3. String? referrals,
  4. String? followUpInstructions,
})

Implementation

Plan({
  this.nonPharmacologicalIntervention,
  this.medications,
  this.referrals,
  this.followUpInstructions,
});