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