backgroundColor property

  1. @override
Color? backgroundColor
final

Background color of the action button.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    actionButton: AssistActionButton(
      backgroundColor: Colors.red,
    ),
  );
}

Implementation

@override
final Color? backgroundColor;