selectedItemsScrollProps property
scroll props for selected item on the dropdown. example :
SizedBox(
height: 50,
child: DropdownSearch<int>.multiSelection(
items: (f, cs) => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
selectedItemsScrollProps: ScrollProps(),
),
),
Implementation
final ScrollProps? selectedItemsScrollProps;