updateEntity method

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

Update a TutorialEntity in the repository, cached

Implementation

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