forAsset method

TransactionQueryBuilder forAsset(
  1. int assetId
)

Lookup transactions for the given asset.

Implementation

TransactionQueryBuilder forAsset(int assetId) {
  addQueryParameter(KEY_ASSET_ID, assetId);
  return this;
}