Stream State Update (#53)

* implemented

* update docs
This commit is contained in:
Hiroshi Horie
2021-12-11 14:18:35 +07:00
committed by GitHub
parent 7e1164a74c
commit 9c573f4924
8 changed files with 80 additions and 0 deletions
+8
View File
@@ -185,3 +185,11 @@ class SignalMuteTrackEvent with SignalEvent {
required this.muted,
});
}
@internal
class SignalStreamStateUpdatedEvent with SignalEvent, EngineEvent {
final List<lk_rtc.StreamStateInfo> updates;
const SignalStreamStateUpdatedEvent({
required this.updates,
});
}