MyBusinessHoursValidator constructor

const MyBusinessHoursValidator({
  1. int startHour = 9,
  2. int endHour = 17,
  3. List<int> allowedWeekdays = const [1, 2, 3, 4, 5],
})

Implementation

const MyBusinessHoursValidator({
  this.startHour = 9,
  this.endHour = 17,
  this.allowedWeekdays = const [1, 2, 3, 4, 5], // Lunes a Viernes
});