unfocusAll method
unfocuses all Participants, which means putting them in the paneled group.
Implementation
void unfocusAll() {
for (Participant r in List.from([
...focused,
...locals,
...remotes,
], growable: false)) {
_putVideoTo(r, paneled);
}
_ensureCorrectGrouping();
}