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