spellcheck property

bool? get spellcheck

Implementation

bool? get spellcheck {
  final value = _getAttributeBoolString('spellcheck') ?? _defaultSpellcheck;
  if (value != null) {
    return value;
  }
  final parent = this.parent;
  if (parent != null) {
    return parent.spellcheck;
  }
  return true;
}
set spellcheck (bool? value)

Implementation

set spellcheck(bool? value) {
  _setAttributeBoolString('spellcheck', value);
}