Line data Source code
1 : import 'package:matrix/matrix.dart';
2 :
3 : /// Initialization parameters of the call session.
4 : class CallOptions {
5 : final String callId;
6 : final CallType type;
7 : final CallDirection dir;
8 :
9 : /// client.deviceID
10 : final String localPartyId;
11 : final VoIP voip;
12 : final Room room;
13 : final List<Map<String, dynamic>> iceServers;
14 : final String? groupCallId;
15 :
16 2 : CallOptions({
17 : required this.callId,
18 : required this.type,
19 : required this.dir,
20 : required this.localPartyId,
21 : required this.voip,
22 : required this.room,
23 : required this.iceServers,
24 : this.groupCallId,
25 : });
26 : }
|