stopRecordingCapturedData method
- {ZegoPublishChannel? channel}
Stops recording locally captured audio or video.
Available since: 1.10.0 Description: Stops recording locally captured audio or video. When to call: After startRecordingCapturedData. Restrictions: None.
channel
Publishing stream channel.
Implementation
Future<void> stopRecordingCapturedData({ZegoPublishChannel? channel}) async {
return await ZegoExpressImpl.instance
.stopRecordingCapturedData(channel: channel);
}