unExclude method

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

Unexclude the member.

await member.unExclude(reason: 'Testing');

Implementation

Future<void> unExclude({String? reason}) => _datastore.member.update(
    serverId: serverId.value,
    memberId: id.value,
    reason: reason,
    payload: {'communication_disabled_until': null});