You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
602 B
Dart
33 lines
602 B
Dart
|
|
const PATIENT_TYPE = const [
|
|
{"text": "outPatiant", "val": "0"},
|
|
{"text": "InPatiant", "val": "1"},
|
|
{"text": "Discharge", "val": "2"},
|
|
{"text": "Referrd", "val": "3"},
|
|
{"text": "Referral Discharge", "val": "4"},
|
|
{"text": "Tomorrow Patient", "val": "5"},
|
|
{"text": "Referral", "val": "6"},
|
|
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
const LOCATIONS = const[
|
|
{"text": "In Sudia Arabia", "val": "1"},
|
|
{"text": "Out Sudia Arabia", "val": "2"},
|
|
];
|
|
|
|
|
|
|
|
enum vitalSignDetails {
|
|
bodyMeasurements,
|
|
temperature,
|
|
pulse,
|
|
pespiration,
|
|
bloodPressure,
|
|
oxygenation,
|
|
painScale
|
|
} |