QueryBlockTracesRequest.deserialize constructor
Implementation
factory QueryBlockTracesRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryBlockTracesRequest(height: decode.getBigInt<BigInt?>(1));
}