add method
Add a FollowingDashboardModel to the repository, cached
Implementation
@override
Future<FollowingDashboardModel> add(FollowingDashboardModel value) {
return reference.add(value).then((newValue) {
fullCache[value.documentID] = newValue;
return newValue;
});
}