Input$QuestionSettingsNumberInput constructor

Input$QuestionSettingsNumberInput({
  1. int? minValue,
  2. int? maxValue,
})

Implementation

factory Input$QuestionSettingsNumberInput({
  int? minValue,
  int? maxValue,
}) =>
    Input$QuestionSettingsNumberInput._({
      if (minValue != null) r'minValue': minValue,
      if (maxValue != null) r'maxValue': maxValue,
    });