QueryTxHashRequest.deserialize constructor

QueryTxHashRequest.deserialize(
  1. List<int> bytes
)

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),
  );
}