onAbort method
Best-effort cleanup hook when a handshake is abandoned before completion.
Implementation
@override
Future<void> onAbort(AuthenticatorContext context, {String? reason}) async {
final pending = _pending;
_pending = null;
if (pending == null) {
return;
}
await _notifyAbort(context, pending, reason: reason);
}