IsolateHeapInfo constructor

const IsolateHeapInfo({
  1. required String id,
  2. required String name,
  3. required int heapUsage,
  4. required int externalUsage,
  5. required int heapCapacity,
})

Implementation

const IsolateHeapInfo({
  required this.id,
  required this.name,
  required this.heapUsage,
  required this.externalUsage,
  required this.heapCapacity,
});