stop method
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!;
}