FileHandlerExecuteEventDetails constructor

FileHandlerExecuteEventDetails({
  1. required List<Object> entries,
  2. int? tabId,
})

Implementation

FileHandlerExecuteEventDetails({
  /// Array of Entry instances representing files that are targets of this
  /// action (selected in ChromeOS file browser).
  required List<Object> entries,

  /// The ID of the tab that raised this event. Tab IDs are unique within a
  /// browser session.
  int? tabId,
}) : _wrapped = $js.FileHandlerExecuteEventDetails(
        entries: entries.toJSArray((e) => e.jsify()!),
        tab_id: tabId,
      );