SystemMemoryInfo constructor
SystemMemoryInfo({})
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,
);