update method

Update a LabelledBodyComponentModel

Implementation

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