enableSmartQuotes method

NikuTextField enableSmartQuotes([
  1. bool value = true
])

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;
}