ListIndexResponse.fromJson constructor

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

Implementation

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