onTap method

Called for each distinct tap except for every second tap of a double tap

Equivalent to

TextFormField(
  onTap: input
)

Implementation

NikuTextField onTap(GestureTapCallback onTap) {
  this._onTap = onTap;

  return this;
}