HeapDumpInput typedef

HeapDumpInput = ({String? isolateId, String outputPath, bool skipGc})

Input parameters for dumpHeap.

Implementation

typedef HeapDumpInput = ({
  /// Path where the heap snapshot file will be written.
  String outputPath,

  /// Specific isolate to snapshot. When null, the main Flutter isolate is used.
  String? isolateId,

  /// When true, skip the pre-snapshot garbage collection step.
  bool skipGc,
});