vmalloc_total property
num?
get
vmalloc_total
Generated
Implementation
num? get vmalloc_total {
try {
if (rawData["vmalloc_total"] is num == false) {
return null;
}
return rawData["vmalloc_total"] as num;
} catch (e) {
return null;
}
}
set
vmalloc_total
(num? value)
Generated
Implementation
set vmalloc_total(num? value) {
rawData["vmalloc_total"] = value;
}