merge method
Merge this object with the given model. This method is used to merge the changes of a document.
Implementation
@override
TDocumentChanges merge(covariant TDocumentChanges model) {
return copyWith(
entryToUpdate: model.entryToUpdate,
keyToDelete: model.keyToDelete,
);
}