enableInteractiveSelection method

NikuTextField enableInteractiveSelection(
  1. bool enabled
)

Whether to enable user interface affordances for changing the text selection

Equivalent to

TextFormField(
  enableInteractiveSelection: input
)

Implementation

NikuTextField enableInteractiveSelection(bool enabled) {
  this._enableInteractiveSelection = enabled;

  return this;
}