BatchListIndexResponse.fromJson constructor

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

Implementation

factory BatchListIndexResponse.fromJson(Map<String, dynamic> json) {
  return BatchListIndexResponse(
    indexAttachments: (json['IndexAttachments'] as List?)
        ?.whereNotNull()
        .map((e) => IndexAttachment.fromJson(e as Map<String, dynamic>))
        .toList(),
    nextToken: json['NextToken'] as String?,
  );
}