streamRetry method

  1. @override
Future<StreamedResponse> streamRetry()
inherited

Retry this request and stream the response. Throws a StateError if this request did not or has yet to fail.

Implementation

@override
Future<StreamedResponse> streamRetry() {
  _verifyCanRetryManually();
  return clone().streamSend(method);
}