LineData constructor

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

Implementation

const LineData({
  required this.firstCell,
  required this.lastCell,
  this.spans = const <DirtySpan>[],
  this.overflowed = false,
});