QueryTradeRewardPointsRequest.deserialize constructor

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

Implementation

factory QueryTradeRewardPointsRequest.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryTradeRewardPointsRequest(
    accounts: decode.getListOrEmpty<String>(1),
    pendingPoolTimestamp: decode.getBigInt<BigInt?>(2),
  );
}