stopLocalRecording method

Future<void> stopLocalRecording()

Stop local media recording

If a recording task has not been stopped through this API before room exit, it will be automatically stopped after room exit.

Platform not supported:

  • web

Implementation

Future<void> stopLocalRecording() {
  return _cloudChannel!.invokeMethod('stopLocalRecording');
}