homeFirstPaintCacheProvider top-level property

  1. @ProviderFor.new(homeFirstPaintCache)
FutureProvider<HomeFirstPaintCacheData> homeFirstPaintCacheProvider
final

Reads the home first-paint cache once and keeps the values alive for the session. Read with valueOrNull to get a fallback value or null.

Copied from homeFirstPaintCache.

Implementation

@ProviderFor(homeFirstPaintCache)
final homeFirstPaintCacheProvider =
    FutureProvider<HomeFirstPaintCacheData>.internal(
      homeFirstPaintCache,
      name: r'homeFirstPaintCacheProvider',
      debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
          ? null
          : _$homeFirstPaintCacheHash,
      dependencies: null,
      allTransitiveDependencies: null,
    );