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