toJson method
Implementation
Map<String, dynamic> toJson() {
final indexName = this.indexName;
final keySchema = this.keySchema;
final projection = this.projection;
return {
'IndexName': indexName,
'KeySchema': keySchema,
'Projection': projection,
};
}