DayOfWeekList.fromJson constructor
DayOfWeekList.fromJson(
- Map json_
Implementation
DayOfWeekList.fromJson(core.Map json_)
: this(
daysOfWeek: (json_['daysOfWeek'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);