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