responseContentTextStyle property

TextStyle? responseContentTextStyle
final

Text style for response message content.

Widget build(BuildContext context) {
  return Scaffold(
    body: SfAIAssistViewTheme(
      data: SfAIAssistViewThemeData(
        responseContentTextStyle: TextStyle(
          fontSize: 14.0,
          color: Colors.black,
        ),
      ),
      child: SfAIAssistView(),
    ),
  );
}

Implementation

final TextStyle? responseContentTextStyle;