next property
Month
get
next
Returns the next month. Wraps around from December to January.
Implementation
Month get next => values[value % 12];
Returns the next month. Wraps around from December to January.
Month get next => values[value % 12];