withTooltip method

Widget withTooltip(
  1. String message
)

Adds a tooltip to any widget

Implementation

Widget withTooltip(String message) {
  return Tooltip(
    message: message,
    child: this,
  );
}