tooltip method

Niku tooltip(
  1. String tip
)

Apply tooltip to widget

Equivalent to:

Tooltip(
  message: input
)

Implementation

Niku tooltip(String tip) {
  _widget = Tooltip(
    message: tip,
    child: _widget,
  );

  return this;
}