Skip to content

Commit d6aabf7

Browse files
committed
release: 1.2.2.
1 parent 8797751 commit d6aabf7

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog
22

33
--------------------------------------------
4-
[1.2.1+hotfix.1] - 2025-02-023
4+
[1.2.2] - 2025-03-24
5+
6+
* add getBufferedAmount for RTCDataChannel.
7+
8+
[1.2.1+hotfix.1] - 2025-02-23
59

610
* fix: make videoValue non nullable (#30)
711
* fix: make optional cname in RTCRTCPParameters nullable (#27)

lib/src/rtc_data_channel.dart

+3
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ abstract class RTCDataChannel {
8080

8181
int? get bufferedAmount;
8282

83+
/// Get the buffered amount from native DC.
84+
Future<int> getBufferAmount() => throw UnimplementedError();
85+
8386
/// Set threshold to trigger onBufferedAmountLow callback
8487
int? bufferedAmountLowThreshold;
8588

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: webrtc_interface
22
description: WebRTC Interface for Dart-Web/Flutter.
3-
version: 1.2.1+hotfix.1
3+
version: 1.2.2
44
homepage: https://flutter-webrtc.org
55

66
environment:

0 commit comments

Comments
 (0)