File tree Expand file tree Collapse file tree 2 files changed +20
-14
lines changed Expand file tree Collapse file tree 2 files changed +20
-14
lines changed Original file line number Diff line number Diff line change 1+
2+ import 'dart:ui' ;
3+
4+ import 'package:meta/meta.dart' ;
5+
6+ @internal
7+ class RendererVisibility {
8+ final String rendererId;
9+ final String trackId;
10+ final bool visible;
11+ final Size size;
12+ RendererVisibility ({
13+ required this .rendererId,
14+ required this .trackId,
15+ required this .visible,
16+ required this .size,
17+ });
18+ }
Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ import 'dart:ui';
44import 'package:collection/collection.dart' ;
55import 'package:meta/meta.dart' ;
66
7- import '../events.dart' ;
87import '../core/signal_client.dart' ;
8+ import '../events.dart' ;
99import '../extensions.dart' ;
1010import '../internal/events.dart' ;
11+ import '../internal/types.dart' ;
1112import '../logger.dart' ;
1213import '../options.dart' ;
1314import '../participant/remote.dart' ;
@@ -18,19 +19,6 @@ import '../types.dart';
1819import '../utils.dart' ;
1920import 'track_publication.dart' ;
2021
21- class RendererVisibility {
22- final String rendererId;
23- final String trackId;
24- final bool visible;
25- final Size size;
26- RendererVisibility ({
27- required this .rendererId,
28- required this .trackId,
29- required this .visible,
30- required this .size,
31- });
32- }
33-
3422/// Represents a track publication from a RemoteParticipant. Provides methods to
3523/// control if we should subscribe to the track, and its quality (for video).
3624class RemoteTrackPublication <T extends RemoteTrack >
You can’t perform that action at this time.
0 commit comments