封装webscoekts

This commit is contained in:
zhutao
2025-11-19 23:20:51 +08:00
parent 1b28239352
commit 701b99b138
4 changed files with 146 additions and 26 deletions

View File

@@ -0,0 +1,16 @@
///学生视频的模型
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,
});
}