tooltip method

Niku tooltip(
  1. String tip
)

Apply tooltip to widget

Equivalent to:

Tooltip(
  message: input
)

Implementation

Niku tooltip(String tip) => Niku(Tooltip(
      message: tip,
      child: this._widget,
    ));