cron method

  1. @override
Future<String?> cron(
  1. String cron,
  2. Topic topic, {
  3. Context? ctx,
})
override

Cron Schedules with the cron expression. "0 * * 1-3 * ? *"

Implementation

@override
Future<String?> cron(String cron, Topic topic, {Context? ctx}) async {
  return await _h.invoke(this, _methods['cron']!, [cron, topic], ctx);
}