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