update deps

This commit is contained in:
Fabian Freund
2025-10-18 18:27:32 +02:00
parent 641d3c7d64
commit 64d588ee3e
7 changed files with 14 additions and 15 deletions
@@ -19,7 +19,6 @@
*/
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:local_auth/local_auth.dart';
import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:weblibre/core/logger.dart';
@@ -63,7 +62,7 @@ class LocalAuthenticationService extends _$LocalAuthenticationService {
}
return result;
} on PlatformException catch (e, s) {
} on LocalAuthException catch (e, s) {
logger.e('Could not authenticate', error: e, stackTrace: s);
return false;
}
@@ -35,7 +35,7 @@ final class LocalAuthenticationServiceProvider
}
String _$localAuthenticationServiceHash() =>
r'4893be7a11833d77a575f7aa248a9ba65d6717da';
r'1aab9214af5487dc770658c7be6f66083f5d6931';
abstract class _$LocalAuthenticationService extends $AsyncNotifier<bool> {
FutureOr<bool> build();