updateEntity method

  1. @override
Future<FeedEntity> updateEntity(
  1. String documentID,
  2. FeedEntity value
)
override

Update a FeedEntity in the repository, cached

Implementation

@override
Future<FeedEntity> updateEntity(String documentID, FeedEntity value) {
  return reference.updateEntity(documentID, value);
}