add method

Add a DecoratedContentModel to the repository, cached

Implementation

@override
Future<DecoratedContentModel> add(DecoratedContentModel value) {
  return reference.add(value).then((newValue) {
    fullCache[value.documentID] = newValue;
    return newValue;
  });
}