Input$MonthDaysInput constructor

Input$MonthDaysInput({
  1. required int month,
  2. List<int>? days,
})

Implementation

factory Input$MonthDaysInput({
  required int month,
  List<int>? days,
}) =>
    Input$MonthDaysInput._({
      r'month': month,
      if (days != null) r'days': days,
    });