DatafeedFetchSchedule.fromJson constructor

DatafeedFetchSchedule.fromJson(
  1. Map json_
)

Implementation

DatafeedFetchSchedule.fromJson(core.Map json_)
  : this(
      dayOfMonth: json_['dayOfMonth'] as core.int?,
      fetchUrl: json_['fetchUrl'] as core.String?,
      hour: json_['hour'] as core.int?,
      minuteOfHour: json_['minuteOfHour'] as core.int?,
      password: json_['password'] as core.String?,
      paused: json_['paused'] as core.bool?,
      timeZone: json_['timeZone'] as core.String?,
      username: json_['username'] as core.String?,
      weekday: json_['weekday'] as core.String?,
    );