ScheduledAutoTuneDetails.fromJson constructor
Implementation
factory ScheduledAutoTuneDetails.fromJson(Map<String, dynamic> json) {
return ScheduledAutoTuneDetails(
action: json['Action'] as String?,
actionType:
(json['ActionType'] as String?)?.toScheduledAutoTuneActionType(),
date: timeStampFromJson(json['Date']),
severity:
(json['Severity'] as String?)?.toScheduledAutoTuneSeverityType(),
);
}