MoveProperties constructor

MoveProperties({
  1. int? windowId,
  2. required int index,
})

Implementation

MoveProperties({
  /// Defaults to the window the tab is currently in.
  int? windowId,

  /// The position to move the window to. Use `-1` to place the tab at the end
  /// of the window.
  required int index,
}) : _wrapped = $js.MoveProperties(
        windowId: windowId,
        index: index,
      );