label method

NikuButton label(
  1. Widget label
)

Add label to IconButton

Equivalent to

TextButton.icon(
  label: input
);

Implementation

NikuButton label(Widget label) {
  this._label = label;

  return this;
}