PricingForChannel constructor
PricingForChannel({
- required String channel,
- double? price,
- double? originalPrice,
- List<
TicketType> ? ticketTypes,
Implementation
factory PricingForChannel({
required String channel,
double? price,
double? originalPrice,
List<TicketType>? ticketTypes,
}) {
return _$PricingForChannel._(
channel: channel,
price: price,
originalPrice: originalPrice,
ticketTypes: ticketTypes != null ? BuiltList(ticketTypes) : null,
);
}