Wraps the widget with a Tooltip.
Tooltip
Example:
Icon(Icons.info).withTooltip(msg: 'Information Icon');
Widget withTooltip({required String msg}) { return Tooltip(message: msg, child: this); }