Debuggee constructor

Debuggee({
  1. int? tabId,
  2. String? extensionId,
  3. String? targetId,
})

Implementation

Debuggee({
  /// The id of the tab which you intend to debug.
  int? tabId,

  /// The id of the extension which you intend to debug. Attaching to an
  /// extension background page is only possible when the
  /// `--silent-debugger-extension-api` command-line switch is used.
  String? extensionId,

  /// The opaque id of the debug target.
  String? targetId,
}) : _wrapped = $js.Debuggee(
        tabId: tabId,
        extensionId: extensionId,
        targetId: targetId,
      );