💡 Wraps a widget inside a tooltip.
Widget withTooltip({required String message}) { return Tooltip(message: message, child: this); }