update method

Update a FollowingDashboardModel

Implementation

@override
Future<FollowingDashboardModel> update(FollowingDashboardModel value) {
  return reference.update(value).then((newValue) {
    fullCache[value.documentID] = newValue;
    return newValue;
  });
}