responseSecondaryHeaderTextStyle property

TextStyle? responseSecondaryHeaderTextStyle
final

Text style for the secondary header of response messages.

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

Implementation

final TextStyle? responseSecondaryHeaderTextStyle;