reorder file structure

This commit is contained in:
2025-06-11 09:45:54 +02:00
parent 9824cbc220
commit d448739bd6
117 changed files with 241 additions and 242 deletions

View File

@@ -0,0 +1,19 @@
class Medicine {
final String name;
final String unit;
final String form;
const Medicine(
this.name,
this.unit,
this.form,
);
factory Medicine.fromJson(dynamic json) {
return Medicine(
json['name'],
json['unit'],
json['dosage form'],
);
}
}