costs property

Map<String, double>? costs
getter/setter pair

A map to pass the costs associated with the product.

For example: {"manufacturing": 45.5} The profit of selling this item is computed like so: * If 'exactPrice' is provided, profit = displayPrice - sum(costs) * If 'priceRange' is provided, profit = minPrice - sum(costs)

Optional.

Implementation

core.Map<core.String, core.double>? costs;