easy_cron

Creator: coderz1093

Last updated:

Add to Cart

Description:

easy cron

Parse cron string to schedule and generate previous or next schedule item
Parsers #
UnixCronParser - implementation unix cron, see https://www.ibm.com/docs/en/db2/11.1?topic=task-unix-cron-format
Usage: #

// import library
import 'package:easy_cron/easy_cron.dart';

// create parser instance
final parser = UnixCronParser();

// parse cron time to CronSchedule
final schedule = parser.parse('* * * * *');

// next time
final nextTime = schedule.next();

// previous time
final prevTime = schedule.prev();
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.