updateEntity method

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

Update a ChatDashboardEntity in the repository, cached

Implementation

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