getTotalVirtualMemory
getTotalVirtualMemory
Example:
import "package:system_info2/system_info2.dart";
print("Processors : ${SysInfo.getTotalVirtualMemory()}");Last updated
Was this helpful?
Returns the total virtual RAM available to the operating system in bytes.
Virtual Memory is reported as the total of the physical memory plus swap space.
import "package:system_info2/system_info2.dart";
print("Processors : ${SysInfo.getTotalVirtualMemory()}");Last updated
Was this helpful?
Was this helpful?