ram_cached property
      
      String?
      get
      ram_cached
      
    
    
General Library Documentation Undocument By General Corporation & Global Corporation & General Developer
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;
}