dueTodayItemsProvider top-level property
- @ProviderFor.new(dueTodayItems)
final
Joined view of due cards with their topic + domain metadata. Keeps the join in one place so the Home screen widget tree stays presentational. Topics are batch-fetched in a single round-trip (was N+1 by topic).
Copied from dueTodayItems.
Implementation
@ProviderFor(dueTodayItems)
final dueTodayItemsProvider =
AutoDisposeFutureProvider<List<DueTodayItem>>.internal(
dueTodayItems,
name: r'dueTodayItemsProvider',
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
? null
: _$dueTodayItemsHash,
dependencies: null,
allTransitiveDependencies: null,
);