tooltip method

  1. @Deprecated('Use withTooltip() instead')
Widget tooltip({
  1. required String msg,
})

Implementation

@Deprecated('Use withTooltip() instead')
Widget tooltip({required String msg}) {
  return Tooltip(message: msg, child: this);
}