tooltip method

NikuIconButton tooltip(
  1. String tooltip
)

Determine whether button should be auto focus

Equivalent to

IconButton(
  tooltip: Explaination of the button
)

Implementation

NikuIconButton tooltip(String tooltip) {
  this._tooltip = tooltip;

  return this;
}