QuerySchedule.fromJson constructor

QuerySchedule.fromJson(
  1. Map json_
)

Implementation

QuerySchedule.fromJson(core.Map json_)
    : this(
        endDate: json_.containsKey('endDate')
            ? Date.fromJson(
                json_['endDate'] as core.Map<core.String, core.dynamic>)
            : null,
        frequency: json_.containsKey('frequency')
            ? json_['frequency'] as core.String
            : null,
        nextRunTimezoneCode: json_.containsKey('nextRunTimezoneCode')
            ? json_['nextRunTimezoneCode'] as core.String
            : null,
        startDate: json_.containsKey('startDate')
            ? Date.fromJson(
                json_['startDate'] as core.Map<core.String, core.dynamic>)
            : null,
      );