inputDecorationTheme property
Defines the default appearance of InputDecoration to show around the text field.
By default, shows a outlined text field.
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;
}