RawSortableStack constructor

const RawSortableStack({
  1. Key? key,
  2. required List<Widget> children,
})

Creates a raw sortable stack.

Implementation

const RawSortableStack({
  super.key,
  required super.children,
});