TicketType constructor
TicketType({})
Implementation
factory TicketType({
required String ticketType,
required double price,
double? originalPrice,
String? label,
String? description,
}) {
return _$TicketType._(
ticketType: ticketType,
price: price,
originalPrice: originalPrice,
label: label,
description: description,
);
}