fallbackMemorySnapshot top-level constant
MemorySnapshot
const fallbackMemorySnapshot
Conservative defaults for platforms with no memory API: assume a small device and let the policy headroom do the rest.
Implementation
const MemorySnapshot fallbackMemorySnapshot = MemorySnapshot(
totalBytes: 4 * 1024 * 1024 * 1024,
availableBytes: 2 * 1024 * 1024 * 1024,
isEstimated: true,
);