BloomRpcTransportException constructor

BloomRpcTransportException({
  1. required Object cause,
  2. BloomRpcContract? contract,
  3. Uri? uri,
  4. StackTrace? stackTrace,
  5. String? message,
})

Creates a BloomRpcTransportException wrapping a lower-level transport cause.

Implementation

BloomRpcTransportException({
  required this.cause,
  this.contract,
  this.uri,
  this.stackTrace,
  String? message,
}) : message = message ?? 'Transport error: $cause';