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