enableSmartDashes method

NikuTextField enableSmartDashes()

Indicates how to handle the intelligent replacement of dashes in text input

Using SmartDashesType.enabled

Equivalent to

TextFormField(
  smartDashesType: SmartDashesType.enabled
)

Implementation

NikuTextField enableSmartDashes() {
  this._smartDashesType = SmartDashesType.enabled;

  return this;
}