chnages has been made and net salary is being displayed

This commit is contained in:
Daniah Ayad Al-sultani
2026-02-11 14:31:03 +03:00
parent 1002937045
commit a7930d19e5
23 changed files with 691 additions and 141 deletions

View File

@@ -3,6 +3,9 @@ class ServerException implements Exception {
final int? statusCode;
ServerException({required this.message, this.statusCode});
@override
String toString() => 'ServerException: $message (Status: $statusCode)';
}
class NetworkException implements Exception {