Fix: mute Remote mute/unmute events (#54)

* fix

* format
This commit is contained in:
Hiroshi Horie
2021-12-12 14:01:58 +07:00
committed by GitHub
parent 2b88ffd5f9
commit b85ecc1588
6 changed files with 44 additions and 47 deletions
+5 -2
View File
@@ -66,13 +66,16 @@ class TrackVisibilityUpdatedEvent with TrackEvent, InternalEvent {
});
}
// Used to notify muted state from Track to TrackPublication.
@internal
class TrackMuteUpdatedEvent with TrackEvent, InternalEvent {
class InternalTrackMuteUpdatedEvent with TrackEvent, InternalEvent {
final Track track;
final bool muted;
const TrackMuteUpdatedEvent({
final bool shouldSendSignal;
const InternalTrackMuteUpdatedEvent({
required this.track,
required this.muted,
required this.shouldSendSignal,
});
@override