12 lines
372 B
Dart
12 lines
372 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
part 'prefs.g.dart';
|
|
|
|
@riverpod
|
|
Future<SharedPreferencesWithCache> prefs(Ref ref) =>
|
|
SharedPreferencesWithCache.create(
|
|
cacheOptions: const SharedPreferencesWithCacheOptions(),
|
|
);
|