formatted the whole codebase

This commit is contained in:
asif
2025-08-18 03:20:05 +05:30
parent e2a809d363
commit e6ea764785
58 changed files with 470 additions and 373 deletions

View File

@@ -1,8 +1,8 @@
class AppException implements Exception {
final String message;
AppException(this.message);
@override
String toString() => message;
}
@@ -11,7 +11,7 @@ class NetworkException extends AppException {
NetworkException(super.message);
}
class AuthException implements Exception{
class AuthException implements Exception {
final String message;
AuthException(this.message);
@@ -21,4 +21,4 @@ class AuthException implements Exception{
class UnexpectedException extends AppException {
UnexpectedException(super.message);
}
}