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