whereTransactionType method

TransactionQueryBuilder whereTransactionType(
  1. TransactionType transactionType
)

Include results only with the given transaction type.

Implementation

TransactionQueryBuilder whereTransactionType(
    TransactionType transactionType) {
  addQueryParameter('tx-type', transactionType.value);
  return this;
}