OnRemovedRemoveInfo constructor

OnRemovedRemoveInfo({
  1. required int windowId,
  2. required bool isWindowClosing,
})

Implementation

OnRemovedRemoveInfo({
  /// The window whose tab is closed.
  required int windowId,

  /// True when the tab was closed because its parent window was closed.
  required bool isWindowClosing,
}) : _wrapped = $js.OnRemovedRemoveInfo(
        windowId: windowId,
        isWindowClosing: isWindowClosing,
      );