MemProfileInput typedef

MemProfileInput = ({bool allIsolates, String? isolateId, String outputPath})

Input for captureMemProfile.

Implementation

typedef MemProfileInput = ({
  /// Specific isolate ID to target (null → use first Flutter isolate).
  String? isolateId,

  /// Where to write the JSON output file.
  String outputPath,

  /// Capture all isolates instead of just one (one file per isolate).
  bool allIsolates,
});