TextAreaTheme constructor
const
TextAreaTheme({
- bool? filled,
- Border? border,
- EdgeInsetsGeometry? padding,
- BorderRadiusGeometry? borderRadius,
Creates a TextAreaTheme with the specified visual properties.
All parameters are optional and will fall back to theme defaults when null.
Parameters:
filled
(bool?, optional): Whether to show filled backgroundborder
(Border?, optional): Border decoration around the text areapadding
(EdgeInsetsGeometry?, optional): Internal content paddingborderRadius
(BorderRadiusGeometry?, optional): Corner rounding radius
Implementation
const TextAreaTheme({
this.filled,
this.border,
this.padding,
this.borderRadius,
});