worldClockRepositoryProvider top-level property

Provider<WorldClockRepository> worldClockRepositoryProvider
final

Implementation

final worldClockRepositoryProvider = Provider<WorldClockRepository>((ref) {
  final dataSource = ref.watch(worldClockLocalDataSourceProvider);
  return WorldClockRepositoryImpl(dataSource);
});