DropdownFieldTheme constructor

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

Implementation

const DropdownFieldTheme({
  TextStyle? textStyle,
  MaterialStateProperty<Color?>? textColor,
  InputDecorationTheme? decorationTheme,
  this.textOverflow,
  this.maxLines,
  this.selectedTextStyle,
  this.selectedMaxLines,
  this.moreIcon,
}) : super(
        textStyle: textStyle,
        textColor: textColor,
        decorationTheme: decorationTheme,
      );