monthly method

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

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

Implementation

String monthly({required DateTime referenceDateTime}) {
  return DateFormat('s m H d * ? *').format(referenceDateTime);
}