responseToolbarBackgroundShape property

ShapeBorder? responseToolbarBackgroundShape
final

Shape of the footer area.

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

Implementation

final ShapeBorder? responseToolbarBackgroundShape;