headerTextStyle property

  1. @override
TextStyle? headerTextStyle
final

Text style for the header.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    requestBubbleSettings: const AssistBubbleSettings(
      headerTextStyle: const TextStyle(fontSize: 14),
    ),
    responseBubbleSettings: const AssistBubbleSettings(
      headerTextStyle: const TextStyle(fontSize: 14),
    ),
  );
}

Implementation

@override
final TextStyle? headerTextStyle;