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) async {
  await _api.start(IdMessage()..recorderId = recorderId);
}