Discord.js v12 member voiceChannel

To get the voice channel of a member in Discord.js v12 using Ember, you can use the voice property of the member object. Here's an example code snippet:

const voiceChannel = member.voice.channel;

This code retrieves the voice channel that the member is currently in, if they are in a voice channel. Make sure to replace member with the actual member object you are working with.