update method
Implementation
@override
Future<DocumentModel> update(DocumentModel value) {
return documentCollection
.doc(value.documentID)
.update(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}
@override
Future<DocumentModel> update(DocumentModel value) {
return documentCollection
.doc(value.documentID)
.update(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}