LCOV - code coverage report
Current view: top level - lib/src/voip/models - call_options.dart (source / functions) Coverage Total Hit
Test: merged.info Lines: 100.0 % 1 1
Test Date: 2025-01-14 13:39:53 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 2.0-1