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_['frequency'] as core.String?,
      nextRunTimezoneCode: json_['nextRunTimezoneCode'] as core.String?,
      startDate: json_.containsKey('startDate')
          ? Date.fromJson(
              json_['startDate'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );