DataSourceRefreshWeeklySchedule.fromJson constructor
DataSourceRefreshWeeklySchedule.fromJson(
- Map json_
Implementation
DataSourceRefreshWeeklySchedule.fromJson(core.Map json_)
: this(
daysOfWeek:
(json_['daysOfWeek'] as core.List?)
?.map((value) => value as core.String)
.toList(),
startTime:
json_.containsKey('startTime')
? TimeOfDay.fromJson(
json_['startTime'] as core.Map<core.String, core.dynamic>,
)
: null,
);