reset method

Future<void> reset()

Restarts the MediaRecorder to its idle state.

After calling this method, you will have to configure it again as if it had just been constructed.

Implementation

Future<void> reset() {
  return _channel.$reset(this);
}