stopLocalPreview method

  1. @override
void stopLocalPreview()
override

Stop camera preview

Implementation

@override
void stopLocalPreview() {
  TRTCLog(_tag, "stopLocalPreview");
  TRTCCloudNative.instance.stopLocalPreview();
  if (_isNativeTexturePlatform) {
    TRTCMethodChannel().unsetLocalTextureRender(TRTCVideoStreamType.big);
  }
}