GetViewsFetchProperties constructor

GetViewsFetchProperties({
  1. ViewType? type,
  2. int? windowId,
  3. 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,
      );