spellAnnotations property

List<SpellAnnotation> get spellAnnotations

Implementation

List<SpellAnnotation> get spellAnnotations => _spellAnnotations;
set spellAnnotations (List<SpellAnnotation> value)

Implementation

set spellAnnotations(List<SpellAnnotation> value) {
  if (!listEquals(_spellAnnotations, value)) {
    _spellAnnotations = value;
    _cachedSpellBoxes = null;
    markNeedsPaint();
  }
}