getPubLiveRemoteTextureView static method
TextureView
getPubLiveRemoteTextureView({
- Key? key,
- required int uid,
- required String channelId,
- VideoRenderMode renderMode = VideoRenderMode.Hidden,
- VideoMirrorMode mirrorMode = VideoMirrorMode.Auto,
- PlatformViewCreatedCallback? onPlatformViewCreated,
- Set<
Factory< ? gestureRecognizers,OneSequenceGestureRecognizer> > - bool useFlutterTexture = true,
Implementation
static TextureView getPubLiveRemoteTextureView({
Key? key,
required int uid,
required String channelId,
VideoRenderMode renderMode = VideoRenderMode.Hidden,
VideoMirrorMode mirrorMode = VideoMirrorMode.Auto,
PlatformViewCreatedCallback? onPlatformViewCreated,
Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers,
bool useFlutterTexture = true,
}) {
return TextureView(
key: key,
uid: uid,
channelId: channelId,
renderMode: renderMode,
mirrorMode: mirrorMode,
onPlatformViewCreated: onPlatformViewCreated,
gestureRecognizers: gestureRecognizers,
useFlutterTexture: useFlutterTexture,
);
}