LineData class final

Metadata for one dirty line.

firstCell and lastCell preserve the historical coarse range used by the current renderer. spans keeps up to a small number of disjoint dirty ranges so future diff passes can skip unchanged islands without losing the existing fast path.

Constructors

LineData({required int firstCell, required int lastCell, List<DirtySpan> spans = const <DirtySpan>[], bool overflowed = false})
const

Properties

firstCell int
final
hashCode int
The hash code for this object.
no setteroverride
isDirty bool
no setter
lastCell int
final
overflowed bool
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
spans List<DirtySpan>
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override

Constants

clean → const LineData