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