updateEntity method

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

Update a TutorialEntryEntity in the repository, cached

Implementation

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