setPressureNotificationsSuppressed method
Enable/disable suppressing memory pressure notifications in all processes.
suppressed
If true, memory pressure notifications will be suppressed.
Implementation
Future<void> setPressureNotificationsSuppressed(bool suppressed) async {
await _client.send('Memory.setPressureNotificationsSuppressed', {
'suppressed': suppressed,
});
}