ListMitigationActionsResponse.fromJson constructor
Implementation
factory ListMitigationActionsResponse.fromJson(Map<String, dynamic> json) {
return ListMitigationActionsResponse(
actionIdentifiers: (json['actionIdentifiers'] as List?)
?.whereNotNull()
.map((e) =>
MitigationActionIdentifier.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['nextToken'] as String?,
);
}