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