getTranscriptionList method

Future<TranscriptionList> getTranscriptionList()

Gets transcription list

Implementation

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