disableSmartDashes method
Indicates how to handle the intelligent replacement of dashes in text input
Using SmartDashesType.disabled
Equivalent to
TextFormField(
smartDashesType: SmartDashesType.disabled
)
Implementation
NikuTextField disableSmartDashes() {
this._smartDashesType = SmartDashesType.disabled;
return this;
}