We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0094c commit 51ad29dCopy full SHA for 51ad29d
lib/src/media_recorder.dart
@@ -20,5 +20,5 @@ abstract class MediaRecorder {
20
int timeSlice = 1000,
21
});
22
23
- Future<dynamic> stop({String? albumName});
+ Future<dynamic> stop();
24
}
lib/src/rtc_video_renderer.dart
@@ -41,8 +41,6 @@ class RTCVideoValue {
41
42
43
abstract class VideoRenderer {
44
- VideoRenderer();
45
-
46
/// When the video size changes, or the native texture
47
/// changes (angle or size), notify the user to redraw the Widget.
48
Function? onResize;
@@ -54,8 +52,6 @@ abstract class VideoRenderer {
54
52
55
53
int get videoHeight;
56
57
- RTCVideoValue get videoValue => RTCVideoValue();
58
59
bool get muted;
60
set muted(bool mute);
61
0 commit comments