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) async {
  final message = await _api.stop(IdMessage()..recorderId = recorderId);

  return message.url!;
}