fromResponse static method
Implementation
static List<PriceRuleEntity> fromResponse({
required List<Price>? response,
}) =>
response
?.map(
(Price price) => PriceRuleMapper.fromResponse(response: price),
)
.toList() ??
<PriceRuleEntity>[];