You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-07 06:16:05 +02: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);
|
||
|
}
|