weeklyHeatmapProvider top-level property
- @ProviderFor.new(weeklyHeatmap)
final
26-week × 7-day activity grid (182 buckets, oldest first). Each entry is
a 0..4 intensity bucket derived from session count for that calendar day.
The grid is laid out column-major: index = weekIndex * 7 + dayOfWeek,
with dayOfWeek == 0 Monday and weekIndex == 25 the current week.
Copied from weeklyHeatmap.
Implementation
@ProviderFor(weeklyHeatmap)
final weeklyHeatmapProvider = AutoDisposeFutureProvider<List<int>>.internal(
weeklyHeatmap,
name: r'weeklyHeatmapProvider',
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
? null
: _$weeklyHeatmapHash,
dependencies: null,
allTransitiveDependencies: null,
);