jsMemoryAllocated property
double?
get
jsMemoryAllocated
The most recent measurement of the process JavaScript allocated memory, in bytes. Only available when receiving the object as part of a callback from onUpdated or onUpdatedWithMemory.
Implementation
double? get jsMemoryAllocated => _wrapped.jsMemoryAllocated;
set
jsMemoryAllocated
(double? v)
Implementation
set jsMemoryAllocated(double? v) {
_wrapped.jsMemoryAllocated = v;
}