LCOV - code coverage report
Current view: top level - lib/src/voip/models - call_options.dart (source / functions) Hit Total Coverage
Test: merged.info Lines: 1 1 100.0 %
Date: 2024-05-13 12:56:47 Functions: 0 0 -

          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             : }

Generated by: LCOV version 1.14