style_cron_job 1.0.0 style_cron_job: ^1.0.0 copied to clipboard
Style Cron Job is periodic operations executor and definator with basic syntax. You can define a period and run your process with your own executor or through the controller.
example/style_cron_job_example.dart
import 'package:style_cron_job/style_cron_job.dart';
void main() {
every.x(10).second.listen((time) {
print(time);
// 2021-10-05 10:24:13.101423
// 2021-10-05 10:24:23.101423
// 2021-10-05 10:24:33.101420
});
}