diff --git a/lib/src/rtc_data_channel.dart b/lib/src/rtc_data_channel.dart index 647647a..0f6c794 100644 --- a/lib/src/rtc_data_channel.dart +++ b/lib/src/rtc_data_channel.dart @@ -70,9 +70,14 @@ abstract class RTCDataChannel { /// Get current state. RTCDataChannelState? get state; + /// Get channel id + String? get id; + /// Get channel label String? get label; + int? get bufferedAmount; + /// Stream of state change events. Emits the new state on change. /// Closes when the [RTCDataChannel] is closed. late Stream stateChangeStream;