update method

Update a FollowRequestModel

Implementation

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