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