mute method
Mute the member.
await member.voice.mute(reason: 'Testing');
Implementation
Future<void> mute({String? reason}) async {
await _memberMethods.update(
serverId: _member.serverId.value,
memberId: _member.id.value,
payload: {'mute': true},
reason: reason,
);
}