封装webscoekts
This commit is contained in:
16
lib/data/models/student.dart
Normal file
16
lib/data/models/student.dart
Normal 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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user