CronExpression constructor

CronExpression(
  1. CronSecond second,
  2. CronMinute minute,
  3. CronHour hour,
  4. CronDay _day,
  5. CronMonth month,
  6. CronYear year,
  7. CronExpressionType type,
)

Implementation

CronExpression(
  this.second,
  this.minute,
  this.hour,
  this._day,
  this.month,
  this.year,
  this.type,
);