From ec17907cdc788f2fb022f20bdf3dab2474dd66ab Mon Sep 17 00:00:00 2001 From: David Zhao Date: Thu, 30 Sep 2021 00:29:51 -0700 Subject: [PATCH] remove RoomEvent from SpeakingChangedEvent, participant-only --- lib/src/events.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/events.dart b/lib/src/events.dart index 835f60c..a6510a4 100644 --- a/lib/src/events.dart +++ b/lib/src/events.dart @@ -198,7 +198,7 @@ class DataReceivedEvent with RoomEvent, ParticipantEvent { /// The participant's isSpeaking property has changed /// Emitted on [Participant]. -class SpeakingChangedEvent with RoomEvent, ParticipantEvent { +class SpeakingChangedEvent with ParticipantEvent { final Participant participant; final bool speaking; const SpeakingChangedEvent({