human_crontab 1.0.0+1 human_crontab: ^1.0.0+1 copied to clipboard
A library for parsing and formatting crontab patterns into a human-readable strings.
example/human_crontab_example.dart
import 'package:human_crontab/human_crontab.dart';
void main() {
final cron = '30 4 */1 12 5';
print(HumanCrontab.parse(cron).toHuman());
}