excludeCloseTo method

TransactionQueryBuilder excludeCloseTo(
  1. bool excludeCloseTo
)

Combine with address and address-role parameters to define what type of address to search for.

The close to fields are normally treated as a receiver, if you would like to exclude them set this parameter to true.

Implementation

TransactionQueryBuilder excludeCloseTo(bool excludeCloseTo) {
  addQueryParameter('exclude-close-to', excludeCloseTo);
  return this;
}