inputDecorationTheme property
The input decoration theme for the TextFields in the time picker.
If this is null, the time picker provides its own defaults.
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;
}