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