DataSourceRefreshMonthlySchedule.fromJson constructor

DataSourceRefreshMonthlySchedule.fromJson(
  1. Map json_
)

Implementation

DataSourceRefreshMonthlySchedule.fromJson(core.Map json_)
    : this(
        daysOfMonth: json_.containsKey('daysOfMonth')
            ? (json_['daysOfMonth'] as core.List)
                .map((value) => value as core.int)
                .toList()
            : null,
        startTime: json_.containsKey('startTime')
            ? TimeOfDay.fromJson(
                json_['startTime'] as core.Map<core.String, core.dynamic>)
            : null,
      );