suggestionBackgroundShape property

ShapeBorder? suggestionBackgroundShape
final

Shape of the suggestion area.

Widget build(BuildContext context) {
  return Scaffold(
    body: SfAIAssistViewTheme(
      data: SfAIAssistViewThemeData(
        suggestionBackgroundShape: RoundedRectangleBorder(
          borderRadius: BorderRadius.circular(8.0),
        ),
      ),
      child: SfAIAssistView(),
    ),
  );
}

Implementation

final ShapeBorder? suggestionBackgroundShape;