start method

  1. @override
Future<void> start(
  1. int recorderId
)
override

Starts the recording of the microphone recorder with the given recorderId.

Implementation

@override
Future<void> start(int recorderId) {
  assert(_recorders.containsKey(recorderId));

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