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 72ebe6f7e7
278 changed files with 1804 additions and 1041 deletions
@@ -0,0 +1,10 @@
class TalkError {
String status;
int code;
String message;
TalkError(this.status, this.code, this.message);
@override
String toString() => 'Talk - $status - ($code): $message';
}