QueryOutputProposalRequest.deserialize constructor

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

Implementation

factory QueryOutputProposalRequest.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryOutputProposalRequest(
    bridgeId: decode.getBigInt<BigInt?>(1),
    outputIndex: decode.getBigInt<BigInt?>(2),
  );
}