MessageInputStyle constructor

const MessageInputStyle({
  1. TextStyle? textStyle,
  2. TextStyle? placeholderTextStyle,
  3. Color? dividerTint,
  4. double? width,
  5. double? height,
  6. Color? background,
  7. BoxBorder? border,
  8. double? borderRadius,
  9. Gradient? gradient,
})

Implementation

const MessageInputStyle({
  this.textStyle,
  this.placeholderTextStyle,
  this.dividerTint,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});