DataSourceRefreshDailySchedule.fromJson constructor

DataSourceRefreshDailySchedule.fromJson(
  1. 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,
    );