add method

Add a FollowRequestModel to the repository, cached

Implementation

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