GetPhysicallyInstalledSystemMemory method
Implementation
int GetPhysicallyInstalledSystemMemory(
ffi.Pointer<ffi.Uint64> TotalMemoryInKilobytes,
) {
return (_GetPhysicallyInstalledSystemMemory ??= _dylib.lookupFunction<
_c_GetPhysicallyInstalledSystemMemory,
_dart_GetPhysicallyInstalledSystemMemory>(
'GetPhysicallyInstalledSystemMemory'))(
TotalMemoryInKilobytes,
);
}