mouseCursor property
Defines the mouse cursor appearance when hovering over the action button.
Example:
@override
Widget build(BuildContext context) {
return SfAIAssistView(
actionButton: AssistActionButton(
mouseCursor: SystemMouseCursors.click,
),
);
}
Implementation
@override
final MouseCursor? mouseCursor;