DayMonth class
A class that represents a day and month combination.
The DayMonth
class is used to hold the values for a specific day and month.
Both day and month are represented as nullable strings.
Example usage:
final date = DayMonth(day: '01', month: '01');
print('Day: ${date.day}, Month: ${date.month}');
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited