unExclude method

Future<void> unExclude({
  1. String? reason,
})

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});