We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9658e0 commit bac9f8eCopy full SHA for bac9f8e
lib/memory/memory.dart
@@ -313,7 +313,7 @@ class MemoryChart extends LineChart<MemoryTracker> {
313
}
314
315
// display the process usage
316
- final String rss = '${_printMb(data.processRss, 0)} MB RSS';
+ final String rss = '${_printMb(data.processRss ?? 0, 0)} MB RSS';
317
processLabel.text = rss;
318
319
// display the dart heap usage
lib/tables.dart
@@ -13,8 +13,6 @@ import 'utils.dart';
13
14
// TODO(devoncarew): fixed position header
15
16
-// TODO(devoncarew): virtualize
17
-
18
class Table<T> extends Object with SetStateMixin {
19
final CoreElement element;
20
final bool _isVirtual;
0 commit comments