DateTimeFieldTheme constructor

const DateTimeFieldTheme({
  1. TextStyle? textStyle,
  2. MaterialStateProperty<Color?>? textColor,
  3. InputDecorationTheme? decorationTheme,
  4. TextAlign? textAlign,
  5. bool? showClearIcon,
  6. @Deprecated('Use clearSuffixButtonTheme.icon') Widget? clearIcon,
  7. ClearSuffixButtonTheme clearSuffixButtonTheme = const ClearSuffixButtonTheme(),
})

Implementation

const DateTimeFieldTheme({
  TextStyle? textStyle,
  MaterialStateProperty<Color?>? textColor,
  InputDecorationTheme? decorationTheme,
  this.textAlign,
  this.showClearIcon,
  @Deprecated('Use clearSuffixButtonTheme.icon') this.clearIcon,
  this.clearSuffixButtonTheme = const ClearSuffixButtonTheme(),
}) : super(
        textStyle: textStyle,
        textColor: textColor,
        decorationTheme: decorationTheme,
      );