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