Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
api_exceptions.dart
Go to the documentation of this file.
1class ApiException implements Exception {
2 final int? statusCode;
3 final Map<String, dynamic>? error;
4
6 this.statusCode,
7 this.error,
8 );
9
10 @override
11 String toString() {
12 return 'ApiException: (status_code: $statusCode, error: $error)';
13 }
14}
ApiException(this.statusCode, this.error,)
override String toString()
final int statusCode
final Map< String, dynamic > error