BloomRpcCancelledException constructor
BloomRpcCancelledException({
- String reason = 'Request was cancelled',
- BloomRpcContract? contract,
- Uri? uri,
Creates a BloomRpcCancelledException with cancellation reason.
Implementation
BloomRpcCancelledException({
this.reason = 'Request was cancelled',
this.contract,
this.uri,
}) : message = 'RPC request cancelled: $reason';