deleteVoice method
Delete a voice Returns true if successful
Implementation
Future<bool> deleteVoice(String voiceId) async {
try {
await _dio.delete('/v1/voices/$voiceId');
return true;
} catch (error) {
throw _handleError(error);
}
}