beforeMaxRound method

TransactionQueryBuilder beforeMaxRound(
  1. int maxRound
)

Include results at or before the specified max-round.

Implementation

TransactionQueryBuilder beforeMaxRound(int maxRound) {
  addQueryParameter('max-round', maxRound);
  return this;
}