Input$QuestionChoiceInput constructor

Input$QuestionChoiceInput({
  1. required String item,
  2. bool? enable,
})

Implementation

factory Input$QuestionChoiceInput({
  required String item,
  bool? enable,
}) =>
    Input$QuestionChoiceInput._({
      r'item': item,
      if (enable != null) r'enable': enable,
    });