shape property

ShapeBorder? shape
final

To set a customize overall shape of the footer area.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    messages: _messages,
    responseToolbarSettings: AssistMessageToolbarSettings(
      shape: RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(20.0),
      ),
    ),
  );
}

Implementation

final ShapeBorder? shape;