Renamed providers

This commit is contained in:
Juan Gilsanz Polo
2024-02-25 14:49:18 +01:00
parent c19ffed623
commit 94e3e1c89a
31 changed files with 44 additions and 44 deletions

View File

@@ -0,0 +1,9 @@
import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:shared_preferences/shared_preferences.dart';
part 'shared_preferences.provider.g.dart';
@Riverpod(keepAlive: true)
SharedPreferences sharedPreferences(SharedPreferencesRef ref) {
throw UnimplementedError();
}