vmalloc_total property

num? get vmalloc_total

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)

Implementation

set vmalloc_total(num? value) {
  rawData["vmalloc_total"] = value;
}