BloomRpcTransportException constructor
BloomRpcTransportException({
- required Object cause,
- BloomRpcContract? contract,
- Uri? uri,
- StackTrace? stackTrace,
- 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';