forAccount method

TransactionQueryBuilder forAccount(
  1. String accountId
)

Lookup transaction for the given account.

Implementation

TransactionQueryBuilder forAccount(String accountId) {
  addQueryParameter(KEY_ACCOUNT_ID, accountId);
  return this;
}