whereAssetName method

AssetQueryBuilder whereAssetName(
  1. String name
)

Filter just assets with the given asset name.

Implementation

AssetQueryBuilder whereAssetName(String name) {
  addQueryParameter('name', name);
  return this;
}