LLmChatTextInput constructor

const LLmChatTextInput({
  1. required TextEditingController controller,
  2. required dynamic onSubmit(
    1. String
    ),
  3. Key? key,
  4. TextStyle? textStyle,
  5. Widget? icon,
  6. Color? background,
  7. EdgeInsets? inputPadding,
})

Implementation

const LLmChatTextInput({
  required this.controller,
  required this.onSubmit,
  super.key,
  this.textStyle,
  this.icon,
  this.background,
  this.inputPadding,
});