Schedule.fromJson constructor
Schedule.fromJson(
- Map json_
Implementation
Schedule.fromJson(core.Map json_)
: this(
cronSchedule: json_.containsKey('cronSchedule')
? json_['cronSchedule'] as core.String
: null,
paused:
json_.containsKey('paused') ? json_['paused'] as core.bool : null,
);