balances method

AccountQueryBuilder balances(
  1. int assetId
)

Lookup the list of accounts who hold this asset

Implementation

AccountQueryBuilder balances(int assetId) {
  addQueryParameter(KEY_BALANCE_ID, assetId);
  return this;
}