freeMemory property
int
get
freeMemory
Returns the free system memory including swap and kernel cache.
Returns
- The free system memory in bytes.
See also:
- totalMemory - For total system memory.
- usedMemory - For SDK memory usage.
Implementation
static int get freeMemory {
final OperationResult resultString = staticMethod('Debug', 'getFreeMemory');
return resultString['result'];
}