popularMoviesProvider top-level property
final
Provider for popular movies with caching (backward compatibility).
Implementation
final popularMoviesProvider = FutureProvider.autoDispose<List<Movie>>((
ref,
) async {
final result = await ref.watch(popularMoviesWithCacheInfoProvider.future);
return result.data;
});