hoverColor property
Color of the action button when it is hovered.
Example:
@override
Widget build(BuildContext context) {
return SfAIAssistView(
actionButton: AssistActionButton(
hoverColor: Colors.yellow,
),
);
}
Implementation
@override
final Color? hoverColor;