maxUsedMemory property
int
get
maxUsedMemory
Returns the maximum memory used by the SDK engine since initialization.
Useful for profiling and identifying peak memory consumption during testing.
Returns
- The maximum memory used by the engine in bytes.
See also:
- usedMemory - For current memory usage.
Implementation
static int get maxUsedMemory {
final OperationResult resultString = staticMethod(
'Debug',
'getMaxUsedMemory',
);
return resultString['result'];
}