getProxiesListWithPriceAndCost method

Iterable<ProxyArticleWorth> getProxiesListWithPriceAndCost(
  1. Iterable<Calibre<ArticleRawAbstract>> calibres
)

Implementation

Iterable<ProxyArticleWorth> getProxiesListWithPriceAndCost(
    Iterable<Calibre> calibres) {
  final proxiesWorth = <ProxyArticleWorth>[];
  for (final p in proxies) {
    final temp = p.getProxyArticleWorth(calibres);
    proxiesWorth.add(temp);
  }
  return proxiesWorth;
}