enableSmartQuotes method
Indicates how to handle the intelligent replacement of quotes in text input
Using SmartQuotesType.enabled
Equivalent to
TextFormField(
smartQuotesType: SmartQuotesType.enabled
)
Implementation
NikuTextField enableSmartQuotes() {
this._smartQuotesType = SmartQuotesType.enabled;
return this;
}