TextAreaTheme constructor

const TextAreaTheme({
  1. bool? filled,
  2. Border? border,
  3. EdgeInsetsGeometry? padding,
  4. 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 background
  • border (Border?, optional): Border decoration around the text area
  • padding (EdgeInsetsGeometry?, optional): Internal content padding
  • borderRadius (BorderRadiusGeometry?, optional): Corner rounding radius

Implementation

const TextAreaTheme({
  this.filled,
  this.border,
  this.padding,
  this.borderRadius,
});