Schedule.daily constructor

Schedule.daily(
  1. int hour, [
  2. int minute = 0,
  3. int second = 0
])

Implementation

factory Schedule.daily(int hour, [int minute = 0, int second = 0]) =>
    DailySchedule(hour, minute, second);