useAbortController function
Creates a browser AbortController and aborts it when keys change or the
hook is removed. Returns null during SSR and first hydration.
Implementation
web.AbortController? useAbortController([List<Object?> keys = const <Object?>[]]) {
return use(_AbortControllerHook(keys: keys));
}