mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 09:13:17 +03:00
11 lines
287 B
Dart
11 lines
287 B
Dart
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
|
|
||
|
|
final secureStorageProvider =
|
||
|
|
StateNotifierProvider<SecureStorageProvider, void>((ref) {
|
||
|
|
return SecureStorageProvider();
|
||
|
|
});
|
||
|
|
|
||
|
|
class SecureStorageProvider extends StateNotifier<void> {
|
||
|
|
SecureStorageProvider() : super(null);
|
||
|
|
}
|