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

@@ -1,23 +0,0 @@
class ICD10Code {
final String icd10;
final String description;
const ICD10Code({
required this.icd10,
required this.description,
});
factory ICD10Code.fromJson(Map<String, dynamic> json) {
return switch (json) {
{
"icd10": String icd10,
'description': String description,
} =>
ICD10Code(
icd10: icd10,
description: description,
),
_ => throw const FormatException('Failed to load icd10 code object.'),
};
}
}