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