PromotionInstance constructor
Implementation
factory PromotionInstance({
$1.Promotion? promotion,
$core.double? promotionValue,
}) {
final $result = create();
if (promotion != null) {
$result.promotion = promotion;
}
if (promotionValue != null) {
$result.promotionValue = promotionValue;
}
return $result;
}