TargetInfo constructor
TargetInfo({})
Implementation
TargetInfo({
/// Target type.
required TargetInfoType type,
/// Target id.
required String id,
/// The tab id, defined if type == 'page'.
int? tabId,
/// The extension id, defined if type = 'background_page'.
String? extensionId,
/// True if debugger is already attached.
required bool attached,
/// Target page title.
required String title,
/// Target URL.
required String url,
/// Target favicon URL.
String? faviconUrl,
}) : _wrapped = $js.TargetInfo(
type: type.toJS,
id: id,
tabId: tabId,
extensionId: extensionId,
attached: attached,
title: title,
url: url,
faviconUrl: faviconUrl,
);