MemNativeInput typedef

MemNativeInput = ({String? appId, int? pid, String? tool})

Input for runMemNative.

Implementation

typedef MemNativeInput = ({
  /// App bundle id / package name override (null → read from `.fdb/app_id.txt`).
  String? appId,

  /// Process PID override (null → read from `.fdb/fdb.app_pid`).
  int? pid,

  /// Tool selection override (`dumpsys`, `footprint`, `vmmap`).
  /// Null means use the platform default.
  String? tool,
});