static DayOfWeek? fromValue(String value) { for (final option in DayOfWeek.values) { if (option.dayName == value) { return option; } } return null; }