stop method

  1. @override
Future<String> stop(
  1. int recorderId
)
override

Stops the recording of the recorder with recorderId and returns its recording URL.

Implementation

@override
Future<String> stop(int recorderId) {
  assert(_recorders.containsKey(recorderId));

  return _recorders[recorderId]!.stop();
}