Input$BookingAttributeInput constructor

Input$BookingAttributeInput({
  1. required String label,
  2. bool? isRequired,
})

Implementation

factory Input$BookingAttributeInput({
  required String label,
  bool? isRequired,
}) =>
    Input$BookingAttributeInput._({
      r'label': label,
      if (isRequired != null) r'isRequired': isRequired,
    });