AndroidStorage constructor

AndroidStorage({
  1. num? totalPssB,
  2. num? summaryJavaHeap,
  3. num? summaryNativeHeap,
  4. num? summaryCode,
  5. num? summaryStack,
  6. num? summaryGraphics,
  7. num? summaryPrivateOther,
  8. num? summarySystem,
  9. num? summaryTotalSwap,
  10. num? ramUseB,
  11. num? ramAllB,
  12. num? ramThreshold,
  13. num? ramAvailableB,
  14. bool? lowMemory,
  15. num? romUseB,
  16. num? romAllB,
  17. num? jvmUseB,
  18. num? jvmMaxB,
  19. num? jvmTotalB,
  20. num? jvmFreeB,
})

Implementation

AndroidStorage({
  this.totalPssB,
  this.summaryJavaHeap,
  this.summaryNativeHeap,
  this.summaryCode,
  this.summaryStack,
  this.summaryGraphics,
  this.summaryPrivateOther,
  this.summarySystem,
  this.summaryTotalSwap,
  this.ramUseB,
  this.ramAllB,
  this.ramThreshold,
  this.ramAvailableB,
  this.lowMemory,
  this.romUseB,
  this.romAllB,
  this.jvmUseB,
  this.jvmMaxB,
  this.jvmTotalB,
  this.jvmFreeB,
});