tooltip property
Text displayed when the button is hovered over or long pressed.
Defaults to null
.
Example:
@override
Widget build(BuildContext context) {
return SfChat(
actionButton: ChatActionButton(
tooltip: 'Send Message',
),
);
}
Implementation
final String? tooltip;