updateEntity method

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

Update a NotificationEntity in the repository, cached

Implementation

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