fullRefreshSystemDataProvider top-level property

Provider<RefreshSystemDataUseCase> fullRefreshSystemDataProvider
final

Provides a use case for fully refreshing the system data

Unlike refreshSystemDataProvider, the use case returned by this call will wait for any loading data to finish, and will then refresh the data again. The other use case will just finish early without refreshing if the data is still loading.

Implementation

final fullRefreshSystemDataProvider = Provider<RefreshSystemDataUseCase>(
  (ref) => ref.watch(fullRefreshGeneratorDetailsProvider),
);