smartQuotesType method

NikuTextField smartQuotesType(
  1. SmartQuotesType type
)

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

Equivalent to

TextFormField(
  smartQuotesType: input
)

Implementation

NikuTextField smartQuotesType(SmartQuotesType type) {
  this._smartQuotesType = type;

  return this;
}