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