whereTransactionId method

TransactionQueryBuilder whereTransactionId(
  1. String transactionId
)

Include results only with the given transaction id.

Implementation

TransactionQueryBuilder whereTransactionId(String transactionId) {
  addQueryParameter('txid', transactionId);
  return this;
}