Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7195,6 +7195,7 @@ public final class io/getstream/video/android/core/Call {
public final fun getSpeaker ()Lio/getstream/video/android/core/SpeakerManager;
public final fun getStatLatencyHistory ()Lkotlinx/coroutines/flow/MutableStateFlow;
public final fun getState ()Lio/getstream/video/android/core/CallState;
public final fun getStatsReport ()Lkotlinx/coroutines/flow/MutableStateFlow;
public final fun getType ()Ljava/lang/String;
public final fun getUser ()Lio/getstream/video/android/model/User;
public final fun getVideoFilter ()Lio/getstream/video/android/core/call/video/VideoFilter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ public class Call(
/**
* Contains stats events for observation.
*/
@InternalStreamVideoApi
val statsReport: MutableStateFlow<CallStatsReport?> = MutableStateFlow(null)

/**
Expand Down
Loading