fromValue static method

DayOfWeek? fromValue(
  1. String value
)

Implementation

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