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