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 SessionST {
final String status;
final bool exists;
const SessionST({
required this.status,
required this.exists,
});
factory SessionST.fromJson(Map<String, dynamic> json) {
return switch (json) {
{
'status': String status,
'exists': bool exists,
} =>
SessionST(
status: status,
exists: exists,
),
_ => throw const FormatException('Failed to load SessionST.'),
};
}
}