We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2e753d commit dcde8a9Copy full SHA for dcde8a9
lib/src/media/stream/client.dart
@@ -24,9 +24,7 @@ class StreamManager {
24
channel = _channel;
25
}
26
27
- StreamServiceClient get _client {
28
- return StreamServiceClient(_channel);
29
- }
+ StreamServiceClient get _client => StreamServiceClient(_channel);
30
31
set channel(WebRtcClientChannel channel) {
32
_errorHandler?.cancel();
@@ -50,12 +48,12 @@ class StreamManager {
50
48
51
49
});
52
53
-
54
- // Readd pre-existing streams (in the event of reconnection)
55
- _streams.keys.forEach((element) {
56
- _add(element);
57
- });
58
};
+
+ // Readd pre-existing streams (in the event of reconnection)
+ _streams.keys.forEach((element) {
+ _add(element);
+ });
59
60
61
/// Add a stream to internal state
0 commit comments