JobScheduling constructor

JobScheduling({
  1. int? maxFailuresPerHour,
  2. int? maxFailuresTotal,
})

Implementation

JobScheduling({
  this.maxFailuresPerHour,
  this.maxFailuresTotal,
});