currentRssBytes function

int? currentRssBytes()

Current resident set size in bytes, or null if unavailable.

Implementation

int? currentRssBytes() {
  try {
    return ProcessInfo.currentRss;
  } catch (_) {
    return null;
  }
}