fullRefreshGeneratorDetailsProvider top-level property
final
Provides a use case for fully refreshing the generator details
Unlike refreshGeneratorDetailsProvider, 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 fullRefreshGeneratorDetailsProvider =
Provider<RefreshGeneratorDetailsUseCase>(
(ref) => fullRefreshGeneratorDetailsApi,
);