QueryTxHashRequest.deserialize constructor
Implementation
factory QueryTxHashRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryTxHashRequest(
sender: decode.getString<String?>(1),
sequence: decode.getString<String?>(2),
);
}