CronTask constructor

CronTask({
  1. required String id,
  2. required String cron,
  3. required String prompt,
  4. required int createdAt,
  5. int? lastFiredAt,
  6. bool recurring = false,
  7. bool permanent = false,
  8. bool? durable,
  9. String? agentId,
})

Implementation

CronTask({
  required this.id,
  required this.cron,
  required this.prompt,
  required this.createdAt,
  this.lastFiredAt,
  this.recurring = false,
  this.permanent = false,
  this.durable,
  this.agentId,
});