CronParser class

The convenient parser for Cron schedule.

The supported cron format:

-----------
* * * * * *
-----------
| | | | | |
| | | | | +-- Weekdays  (range: 0-7)
| | | | +---- Months    (range: 1-12)
| | | +------ Days      (range: 1-31)
| | +-------- Hours     (range: 0-23)
| +---------- Minutes   (range: 0-59)
+------------ Seconds   (range: 0-59, it will be interpreted as "*" if it's omitted)

Constructors

CronParser(String value)
Returns the new instance of CronParser.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
parse() → CronSchedule
Returns the parsed schedule.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited