removeShadowBan method

Future<EmptyResponse> removeShadowBan(
  1. String targetID, [
  2. Map<String, dynamic> options = const {}
])

Removes shadow ban from a user

Implementation

Future<EmptyResponse> removeShadowBan(
  String targetID, [
  Map<String, dynamic> options = const {},
]) =>
    unbanUser(targetID, {
      'shadow': true,
      ...options,
    });