update method

Update a DecorationColorModel

Implementation

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