GetViewsFetchProperties constructor
GetViewsFetchProperties(
{ - ViewType? type,
- int? windowId,
- int? tabId,
})
Implementation
GetViewsFetchProperties({
/// The type of view to get. If omitted, returns all views (including
/// background pages and tabs).
ViewType? type,
/// The window to restrict the search to. If omitted, returns all views.
int? windowId,
/// Find a view according to a tab id. If this field is omitted, returns all
/// views.
int? tabId,
}) : _wrapped = $js.GetViewsFetchProperties(
type: type?.toJS,
windowId: windowId,
tabId: tabId,
);