ListActionsResponse.fromJson constructor

ListActionsResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ListActionsResponse.fromJson(Map<String, dynamic> json) {
  return ListActionsResponse(
    actionSummaries: (json['ActionSummaries'] as List?)
        ?.whereNotNull()
        .map((e) => ActionSummary.fromJson(e as Map<String, dynamic>))
        .toList(),
    nextToken: json['NextToken'] as String?,
  );
}