老师端几乎ok

This commit is contained in:
zhutao
2025-11-20 23:03:49 +08:00
parent b7239292d1
commit 9c94ee31fd
7 changed files with 325 additions and 94 deletions

View File

@@ -1,16 +0,0 @@
///学生视频的模型
class Student {
final String id;
final String name;
final bool cameraOn;
final bool micOn;
final bool muted;
Student({
required this.id,
required this.name,
this.cameraOn = true,
this.micOn = true,
this.muted = true,
});
}