QueryTradeRewardPointsRequest.deserialize constructor
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),
);
}