shape property

  1. @override
ShapeBorder? shape
final

Used to customize the shape of action button.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    actionButton: AssistActionButton(
      shape: RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(8.0),
      ),
    ),
  );
}

Implementation

@override
final ShapeBorder? shape;