Implement local HTTP Api usage

This commit is contained in:
2023-02-14 18:06:18 +01:00
parent 83ad7d59d2
commit 7432972b3c
27 changed files with 1300 additions and 59 deletions

5
lib/api/apiError.dart Normal file
View File

@ -0,0 +1,5 @@
class ApiError {
String message;
ApiError(this.message);
}