BatchListPolicyAttachmentsResponse.fromJson constructor

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

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(),
  );
}