buildParseResponseWithException function

ParseResponse buildParseResponseWithException(
  1. Exception exception
)

Handles exception instead of throwing an exception

Implementation

ParseResponse buildParseResponseWithException(Exception exception) {
  if (exception is DioError) {
    Map<String, dynamic> errorResponse = {};
    try {
      errorResponse = json.decode(exception.response?.data?.toString() ?? '{}');
    } on FormatException catch (_) {}

    final errorMessage =
        errorResponse['error']?.toString() ?? exception.response?.statusMessage;

    final errorCode =
        int.tryParse(errorResponse['code']) ?? exception.response?.statusCode;

    return ParseResponse(
        error: ParseError(
      message: errorMessage ?? exception.toString(),
      exception: exception,
      code: errorCode ?? ParseError.otherCause,
    ));
  }

  return ParseResponse(
      error: ParseError(message: exception.toString(), exception: exception));
}