whereUnitName method

AssetQueryBuilder whereUnitName(
  1. String unitName
)

Filter just assets with the given unit name.

Implementation

AssetQueryBuilder whereUnitName(String unitName) {
  addQueryParameter('unit', unitName);
  return this;
}