getTranscriptionList method
Gets transcription list
Implementation
Future<TranscriptionList> getTranscriptionList() async {
final response = await _dio.get('v2/pre-recorded');
return TranscriptionList.fromJson(response.data);
}
Gets transcription list
Future<TranscriptionList> getTranscriptionList() async {
final response = await _dio.get('v2/pre-recorded');
return TranscriptionList.fromJson(response.data);
}