SystemMemoryInfo constructor

SystemMemoryInfo({
  1. num? total,
  2. num? free,
  3. num? available,
  4. num? buffers,
  5. num? cached,
  6. num? swapTotal,
  7. num? swapFree,
})

Implementation

factory SystemMemoryInfo({
  _i2.num? total,
  _i2.num? free,
  _i2.num? available,
  _i2.num? buffers,
  _i2.num? cached,
  _i2.num? swapTotal,
  _i2.num? swapFree,
}) =>
    SystemMemoryInfo._(
      total: total,
      free: free,
      available: available,
      buffers: buffers,
      cached: cached,
      swapTotal: swapTotal,
      swapFree: swapFree,
    );