DescribeScheduledActionsResponse.fromJson constructor
Implementation
factory DescribeScheduledActionsResponse.fromJson(Map<String, dynamic> json) {
return DescribeScheduledActionsResponse(
nextToken: json['NextToken'] as String?,
scheduledActions: (json['ScheduledActions'] as List?)
?.whereNotNull()
.map((e) => ScheduledAction.fromJson(e as Map<String, dynamic>))
.toList(),
);
}