worldClockLocalDataSourceProvider top-level property

Provider<WorldClockLocalDataSource> worldClockLocalDataSourceProvider
final

Implementation

final worldClockLocalDataSourceProvider = Provider<WorldClockLocalDataSource>((ref) {
  final sharedPreferences = ref.watch(sharedPreferencesProvider).asData!.value;
  return WorldClockLocalDataSourceImpl(sharedPreferences);
});