sharedPreferences function

  1. @Riverpod(keepAlive: true)
Future<SharedPreferences> sharedPreferences(
  1. Ref ref
)

Implementation

@Riverpod(keepAlive: true)
Future<SharedPreferences> sharedPreferences(Ref ref) {
  return SharedPreferences.getInstance();
}