LlmMessageStyle constructor

const LlmMessageStyle({
  1. Widget? assistantIcon,
  2. Widget? userIcon,
  3. EdgeInsets? inputPadding,
  4. Widget? sendIcon,
  5. TextStyle? userTextStyle,
  6. TextStyle? assistantTextStyle,
  7. TextStyle? inputTextStyle,
  8. TextStyle? systemTextStyle,
  9. Color? systemColor,
  10. Color? inputBoxColor,
  11. required Color userColor,
  12. required Color assistantColor,
})

Implementation

const LlmMessageStyle({
  this.assistantIcon,
  this.userIcon,
  this.inputPadding,
  this.sendIcon,
  this.userTextStyle,
  this.assistantTextStyle,
  this.inputTextStyle,
  this.systemTextStyle,
  this.systemColor,
  this.inputBoxColor,
  required this.userColor,
  required this.assistantColor,
});