pruneCount method

Future<int> pruneCount(
  1. int days, {
  2. Iterable<Snowflake>? includeRoles,
})

Returns int indicating the number of members that would be removed in a prune operation.

Implementation

Future<int> pruneCount(int days, {Iterable<Snowflake>? includeRoles}) =>
    client.httpEndpoints.guildPruneCount(this.id, days, includeRoles: includeRoles);