CronJob constructor
CronJob({})
Implementation
CronJob(
{required this.timePeriod,
required this.onCall,
this.resetPeriodOnExternalCall = true,
this.allowExternal = false,
String? name,
GlobalKey? key})
: name = name ?? "cron_job_${timePeriod.runtimeType}${getRandomId(5)}";