patientExamItems top-level property

List<PatientExamItem> patientExamItems
getter/setter pair

Implementation

List<PatientExamItem> patientExamItems = <PatientExamItem>[
  PatientExamItem(
    title: 'Patient Review',
    subtitle: 'Conditions, Allergies and vitals',
    widget: PatientExamReview(),
  ),
  PatientExamItem(
    title: 'Patient History',
    subtitle: 'Chief complaint and patient history',
    widget: PatientHistory(),
  ),
  PatientExamItem(
    title: 'Patient Examination',
    subtitle: 'General exam and review of systems',
    widget: PatientExamination(),
  ),
  PatientExamItem(
    title: 'Treatment plan',
    subtitle: 'Diagnosis, tests and medications',
    widget: PatientExamDiagnosis(),
  ),
];