constraints method

NikuIconButton constraints(
  1. BoxConstraints boxConstraints
)

Whether detected gestures should provide acoustic and/or haptic feedback

Equivalent to

IconButton(
  constraints: input
)

Implementation

NikuIconButton constraints(BoxConstraints boxConstraints) {
  this._constraints = boxConstraints;

  return this;
}