ScheduleAction.fromJson constructor
Implementation
factory ScheduleAction.fromJson(Map<String, dynamic> json) {
return ScheduleAction(
actionName: json['actionName'] as String,
scheduleActionSettings: ScheduleActionSettings.fromJson(
json['scheduleActionSettings'] as Map<String, dynamic>),
scheduleActionStartSettings: ScheduleActionStartSettings.fromJson(
json['scheduleActionStartSettings'] as Map<String, dynamic>),
);
}