stopLocalRecording method Null safety

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.

Implementation

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