Promotion constructor
const
Promotion({})
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;