Room to extend ChangeNotifier

This commit is contained in:
David Zhao
2021-07-25 00:05:48 -07:00
parent 0bd2679e94
commit a47c50c3c1
2 changed files with 52 additions and 19 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ class Participant {
Participant(this.sid, this.identity);
set isSpeaking(bool speaking) {
if (_isSpeaking != speaking) {
if (_isSpeaking == speaking) {
return;
}
_isSpeaking = speaking;