unExclude method
Unexclude the member.
await member.unExclude(reason: 'Testing');
Implementation
Future<void> unExclude({String? reason}) => _memberMethods.updateMember(
serverId: server.id,
memberId: id,
reason: reason,
payload: {'communication_disabled_until': null});