readOnly method

NikuTextField readOnly(
  1. bool readOnly
)

Should textfield be readonly

Equivalent to

TextFormField(
  readonly: input
)

Implementation

NikuTextField readOnly(bool readOnly) {
  this._readOnly = readOnly;

  return this;
}