availableVoices method
Implementation
Future availableVoices() async {
const endpoint = 'voices';
Future request = http.get(_getApiUrl(endpoint));
try {
await _getResponse(request.then((value) => value as http.Response));
} catch (e) {
throw (e);
}
}