disableSmartQuotes method

NikuTextField disableSmartQuotes()

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

Using SmartQuotesType.disabled

Equivalent to

TextFormField(
  smartQuotesType: SmartQuotesType.disabled
)

Implementation

NikuTextField disableSmartQuotes() {
  this._smartQuotesType = SmartQuotesType.disabled;

  return this;
}