ClientException.openingStreamFailed constructor

ClientException.openingStreamFailed(
  1. dynamic cause
)

Create an exception telling that a opening stream failed with cause.

Implementation

factory ClientException.openingStreamFailed(dynamic cause) =>
    ClientException('Opening stream failed: $cause', cause: cause);