cursor method

NikuIconButton cursor(
  1. MouseCursor click
)

The cursor for a mouse pointer when it enters or is hovering over the button

Equivalent to

IconButton(
  mouseCursor: input
)

Implementation

NikuIconButton cursor(MouseCursor click) {
  getMouseCursor = click;

  return this;
}