settingsLocalDataSourceProvider top-level property

Provider<SettingsLocalDataSource> settingsLocalDataSourceProvider
final

Implementation

final settingsLocalDataSourceProvider = Provider<SettingsLocalDataSource>((ref) {
  final prefs = ref.watch(sharedPreferencesProvider);
  return SettingsLocalDataSourceImpl(sharedPreferences: prefs);
});