requestFailed static method

SDKException requestFailed(
  1. Object error
)

Implementation

static SDKException requestFailed(Object error) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_REQUEST_FAILED,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_NETWORK,
  message: 'Request failed: $error',
  underlyingError: error,
);