| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : /// A class describing an Web API response error 2 : /// - [httpErrorCode] is the status code of the response (exemple: 404) 3 : /// - [apiStatusCode] is the code of the api (exemple: AMBXXXX) 4 : /// - [message] is the error message 5 : class ApiError { 6 : final int httpErrorCode; 7 : final String apiStatusCode; 8 : final String? message; 9 : 10 6 : ApiError({required this.httpErrorCode, required this.apiStatusCode, this.message}); 11 : } |
| Generated by: LCOV version 2.3-1 |