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