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