DataSourceRefreshDailySchedule.fromJson constructor
DataSourceRefreshDailySchedule.fromJson(
- Map json_
Implementation
DataSourceRefreshDailySchedule.fromJson(core.Map json_)
: this(
startTime: json_.containsKey('startTime')
? TimeOfDay.fromJson(
json_['startTime'] as core.Map<core.String, core.dynamic>)
: null,
);