inputDecorationTheme property
Overrides the InputDatePickerFormField's input decoration theme. If this is null, ThemeData.inputDecorationTheme is used instead.
Implementation
// TODO(bleroux): Clean this up once `InputDecorationTheme` is fully normalized.
InputDecorationThemeData? get inputDecorationTheme {
if (_inputDecorationTheme == null) {
return null;
}
return _inputDecorationTheme is InputDecorationTheme
? _inputDecorationTheme.data
: _inputDecorationTheme as InputDecorationThemeData;
}