enableInteractiveSelection method

NikuTextField enableInteractiveSelection([
  1. bool enabled = true
])

Whether to enable user interface affordances for changing the text selection

Equivalent to

TextFormField(
  enableInteractiveSelection: input
)

Implementation

NikuTextField enableInteractiveSelection([bool enabled = true]) {
  _enableInteractiveSelection = enabled;

  return this;
}