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