weatherRepositoryProvider top-level property
Implementation
final weatherRepositoryProvider = Provider<WeatherRepository>((ref) {
return WeatherRepositoryImpl(
remoteDataSource: WeatherRemoteDataSourceImpl(client: http.Client()),
);
});
final weatherRepositoryProvider = Provider<WeatherRepository>((ref) {
return WeatherRepositoryImpl(
remoteDataSource: WeatherRemoteDataSourceImpl(client: http.Client()),
);
});