stopRecordingCapturedData method

Future<void> stopRecordingCapturedData(
  1. {ZegoPublishChannel? channel}
)

结束录制本端音频或音视频。

支持版本:1.10.0 及以上。 详情描述:结束录制本端音频或音视频。 调用时机:在 startRecordingCapturedData 之后。 使用限制:无。

  • channel 推流通道。

Implementation

Future<void> stopRecordingCapturedData({ZegoPublishChannel? channel}) async {
  return await ZegoExpressImpl.instance
      .stopRecordingCapturedData(channel: channel);
}