whereRound method

TransactionQueryBuilder whereRound(
  1. int round
)

Include results for the specified round.

Implementation

TransactionQueryBuilder whereRound(int round) {
  addQueryParameter('round', round);
  return this;
}