mouseCursor property
Customizes the cursor that appears when you hover over the button.
Defaults to null
Example:
@override
Widget build(BuildContext context) {
return SfChat(
actionButton: ChatActionButton(
mouseCursor: SystemMouseCursors.click,
),
);
}
Implementation
final MouseCursor? mouseCursor;