worldClockRepositoryProvider top-level property
Implementation
final worldClockRepositoryProvider = Provider<WorldClockRepository>((ref) {
final dataSource = ref.watch(worldClockLocalDataSourceProvider);
return WorldClockRepositoryImpl(dataSource);
});