MemorySnapshot constructor

const MemorySnapshot({
  1. required int totalBytes,
  2. required int availableBytes,
  3. int? appFootprintBytes,
  4. bool isEstimated = false,
})

Creates a snapshot.

Implementation

const MemorySnapshot({
  required this.totalBytes,
  required this.availableBytes,
  this.appFootprintBytes,
  this.isEstimated = false,
});