Scheduled constructor

const Scheduled({
  1. String? cron,
  2. int? fixedDelay,
  3. String? fixedDelayString,
  4. int? fixedRate,
  5. String? fixedRateString,
  6. int? initialDelay,
  7. String? initialDelayString,
  8. String? scheduler,
  9. TimeUnit? timeUnit,
  10. String? zone,
})

Constructor for the Scheduled annotation.

Implementation

const Scheduled({
  this.cron,
  this.fixedDelay,
  this.fixedDelayString,
  this.fixedRate,
  this.fixedRateString,
  this.initialDelay,
  this.initialDelayString,
  this.scheduler,
  this.timeUnit,
  this.zone,
});