weekly method

String weekly({
  1. required DateTime referenceDateTime,
})

Generates a Cron expression to be played only once at week from now

Implementation

String weekly({required DateTime referenceDateTime}) {
  return DateFormat('s m H ? M E *').format(referenceDateTime).toUpperCase();
}