mBPatientStatus top-level property

List<MBInfo> mBPatientStatus
getter/setter pair

Implementation

List<MBInfo> mBPatientStatus = [
  MBInfo(
    display: "Invited",
    description: "Patient has been invited but not yet linked their account",
    code: "invited",
    color: getMBColorByName("Slate"),
    icon: "person_add",
  ),
  MBInfo(
    display: "Linked",
    description: "Patient has successfully linked their account",
    code: "linked",
    color: getMBColorByName("Health"),
    icon: "link",
  ),
];