dropdownStyle property

TextStyle? dropdownStyle
final

For example,

RangeInput(
  ...
  id="range-input",
  dropdownStyle: TextStyle(
         color: Colors.deepPurple,
         fontSize: 18,
         height: 1,
       ),
)

Implementation

final TextStyle? dropdownStyle;