type property

  1. @memoized
ScheduleType type

Implementation

@memoized
ScheduleType get type {
  if (isAlarm) {
    return Alarm(this);
  } else {
    return Timer(this);
  }
}