DropdownFieldTheme constructor

const DropdownFieldTheme({
  1. TextStyle? textStyle,
  2. WidgetStateProperty<Color?>? textColor,
  3. InputDecorationThemeData? decorationTheme,
  4. TextOverflow? textOverflow,
  5. int? maxLines,
  6. TextStyle? selectedTextStyle,
  7. int? selectedMaxLines,
  8. Widget? moreIcon,
})

Implementation

const DropdownFieldTheme({
  super.textStyle,
  super.textColor,
  super.decorationTheme,
  this.textOverflow,
  this.maxLines,
  this.selectedTextStyle,
  this.selectedMaxLines,
  this.moreIcon,
});