LCOV - code coverage report
Current view: top level - lib/api/utils - api_error.dart Coverage Total Hit
Test: lcov.info Lines: 100.0 % 1 1
Test Date: 2025-05-10 20:26:13 Functions: - 0 0

            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