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