Schedule.fromJson constructor

Schedule.fromJson(
  1. Map json_
)

Implementation

Schedule.fromJson(core.Map json_)
    : this(
        intervalDurationDays: json_['intervalDurationDays'] as core.int?,
        scheduleTime: json_['scheduleTime'] as core.String?,
      );