BloomRpcEncodeException constructor
BloomRpcEncodeException({
- required Object cause,
- BloomRpcContract? contract,
- Uri? uri,
- StackTrace? stackTrace,
- String? message,
Creates a BloomRpcEncodeException with encoding cause.
Implementation
BloomRpcEncodeException({
required this.cause,
this.contract,
this.uri,
this.stackTrace,
String? message,
}) : message = message ?? 'Failed to encode RPC input: $cause';