update method
Update a DocumentModel
Implementation
@override
Future<DocumentModel> update(DocumentModel value) {
return reference.update(value).then((newValue) {
fullCache[value.documentID] = newValue;
return newValue;
});
}
Update a DocumentModel
@override
Future<DocumentModel> update(DocumentModel value) {
return reference.update(value).then((newValue) {
fullCache[value.documentID] = newValue;
return newValue;
});
}