claude refactorings, flutter best practices, platform dependent changes, general cleanup

This commit is contained in:
2026-05-06 11:58:50 +02:00
parent 4b1d4379a0
commit 4e1272aba9
281 changed files with 1948 additions and 1041 deletions
+8
View File
@@ -0,0 +1,8 @@
class ApiError implements Exception {
String message;
ApiError(this.message);
@override
String toString() => 'ApiError: $message';
}