Skip to content

Commit 0a4af45

Browse files
committed
formatting
1 parent 5599972 commit 0a4af45

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/src/rtc_data_channel_impl.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ class RTCDataChannelWeb extends RTCDataChannel {
4848
}
4949

5050
final _stateChangeController =
51-
StreamController<RTCDataChannelState>.broadcast(sync: true);
51+
StreamController<RTCDataChannelState>.broadcast(sync: true);
5252
final _messageController =
53-
StreamController<RTCDataChannelMessage>.broadcast(sync: true);
53+
StreamController<RTCDataChannelMessage>.broadcast(sync: true);
5454

5555
Future<RTCDataChannelMessage> _parse(dynamic data) async {
5656
if (data is String) return RTCDataChannelMessage(data);
@@ -80,4 +80,4 @@ class RTCDataChannelWeb extends RTCDataChannel {
8080
_jsDc.close();
8181
return Future.value();
8282
}
83-
}
83+
}

0 commit comments

Comments
 (0)