getMemoryHealth method
Raw memory metrics map from the host.
Implementation
@override
Future<Map<String, dynamic>> getMemoryHealth() async {
final cores = web.window.navigator.hardwareConcurrency;
return <String, dynamic>{
'total_mb': 0,
'available_mb': 0,
'used_mb': 0,
'usage_percent': 0.0,
'is_low_memory': false,
'cpu_hint_cores': cores,
};
}