TicketType constructor

TicketType({
  1. required String ticketType,
  2. required double price,
  3. double? originalPrice,
  4. String? label,
  5. String? description,
})

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,
  );
}