Schedule.fromJson constructor

Schedule.fromJson(
  1. Map json_
)

Implementation

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