editorTextStyle property
Text style for the message editor.
Widget build(BuildContext context) {
  return Scaffold(
    body: SfAIAssistViewTheme(
      data: SfAIAssistViewThemeData(
        editorTextStyle: TextStyle(
          fontSize: 16.0,
          color: Colors.black,
        ),
      ),
      child: SfAIAssistView(),
    ),
  );
}
Implementation
final TextStyle? editorTextStyle;