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