totalMemory property
int
get
totalMemory
Returns the total system memory available to the device.
Returns
- The total system memory in bytes.
See also:
- usedMemory - For SDK memory usage.
- freeMemory - For available memory.
Implementation
static int get totalMemory {
final OperationResult resultString = staticMethod(
'Debug',
'getTotalMemory',
);
return resultString['result'];
}