smartDashesType method

NikuTextField smartDashesType(
  1. SmartDashesType type
)

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

Equivalent to

TextFormField(
  smartDashesType: input
)

Implementation

NikuTextField smartDashesType(SmartDashesType type) {
  this._smartDashesType = type;

  return this;
}