Promotion constructor
- @JsonSerializable(includeIfNull: false)
const
Promotion(
{ - required String reference_id,
- required String code,
- required String type,
- required int value,
- required String value_type,
- String? description,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory Promotion({
required String reference_id,
required String code,
required String type, // 'coupon' | 'offer'
required int value,
required String value_type, // 'fixed_amount' | 'percentage'
String? description,
}) = _Promotion;