Input$EventTicketBundleInput constructor

Input$EventTicketBundleInput({
  1. String? title,
  2. String? zone,
  3. DateTime? from,
  4. DateTime? to,
  5. required String price,
})

Implementation

factory Input$EventTicketBundleInput({
  String? title,
  String? zone,
  DateTime? from,
  DateTime? to,
  required String price,
}) =>
    Input$EventTicketBundleInput._({
      if (title != null) r'title': title,
      if (zone != null) r'zone': zone,
      if (from != null) r'from': from,
      if (to != null) r'to': to,
      r'price': price,
    });