updateEntity method

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

Update a PlayStoreEntity in the repository, cached

Implementation

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