MoveProperties constructor
MoveProperties(
{ - int? windowId,
- required int index,
})
Implementation
MoveProperties({
/// The window to move the group to. Defaults to the window the group is
/// currently in. Note that groups can only be moved to and from windows
/// with [windows.WindowType] type `"normal"`.
int? windowId,
/// The position to move the group to. Use `-1` to place the group at the
/// end of the window.
required int index,
}) : _wrapped = $js.MoveProperties(
windowId: windowId,
index: index,
);