deleteAttempts abstract method
Deletes attempts within this limiter's domain and source.
If key is omitted, matches every key in this scope. If olderThan is
provided, only attempts strictly older than that duration are removed,
measured from the current time. Omitting olderThan removes all matching
attempts, regardless of the configured window.
Returns the number of deleted attempts.
Implementation
Future<int> deleteAttempts(
final Session session, {
final String? key,
final Duration? olderThan,
final Transaction? transaction,
});