APIFailure constructor

APIFailure(
  1. APIException apiException
)

Implementation

APIFailure(this.apiException)
  : super(
      message: apiException.message,
      statusCode: apiException.statusCode,
      errorCode: apiException.errorCode,
      thirdpartyResponseDirectWebViewURL:
          apiException.thirdpartyResponseDirectWebViewURL,
    );