LCOV - code coverage report
Current view: top level - lib/src/voip/models - matrixrtc_call_event.dart (source / functions) Hit Total Coverage
Test: merged.info Lines: 1 2 50.0 %
Date: 2024-09-27 11:38:01 Functions: 0 0 -

          Line data    Source code
       1             : import 'package:matrix/matrix.dart';
       2             : 
       3             : /// UNSTABLE API WARNING
       4             : /// The class herirachy is currently experimental and could have breaking changes
       5             : /// often.
       6             : sealed class MatrixRTCCallEvent {}
       7             : 
       8             : sealed class ParticipantsChangeEvent implements MatrixRTCCallEvent {}
       9             : 
      10             : final class ParticipantsJoinEvent implements ParticipantsChangeEvent {
      11             :   final List<CallParticipant> participants;
      12             : 
      13           2 :   ParticipantsJoinEvent({required this.participants});
      14             : }
      15             : 
      16             : final class ParticipantsLeftEvent implements ParticipantsChangeEvent {
      17             :   final List<CallParticipant> participants;
      18             : 
      19           0 :   ParticipantsLeftEvent({required this.participants});
      20             : }

Generated by: LCOV version 1.14