available property
num
get
available
Estimation of how much memory, in bytes, is available for starting new applications, without swapping. Unlike the data provided by the cache or free fields, this field takes into account page cache and also that not all reclaimable memory will be reclaimed due to items being in use.
Implementation
_i2.num get available => _i3.getProperty(
this,
'available',
);
set
available
(num value)
Implementation
set available(_i2.num value) {
_i3.setProperty(
this,
'available',
value,
);
}