$FeedSchedule.fromJson constructor

$FeedSchedule.fromJson(
  1. Map json_
)

Implementation

$FeedSchedule.fromJson(core.Map json_)
  : this(
      repeatValue: json_['repeatValue'] as core.String?,
      scheduleEnabled: json_['scheduleEnabled'] as core.bool?,
      startHour: json_['startHour'] as core.String?,
      startMinute: json_['startMinute'] as core.String?,
      timeZone: json_['timeZone'] as core.String?,
    );