updateEntity method

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

Update a NotificationDashboardEntity in the repository, cached

Implementation

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