add method

Add a LabelledBodyComponentModel to the repository, cached

Implementation

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