RecurringTimeWindow.fromJson constructor

RecurringTimeWindow.fromJson(
  1. Map json_
)

Implementation

RecurringTimeWindow.fromJson(core.Map json_)
  : this(
      recurrence: json_['recurrence'] as core.String?,
      window:
          json_.containsKey('window')
              ? TimeWindow.fromJson(
                json_['window'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );