LineCells constructor

LineCells({
  1. required int line,
  2. required Uint32List codepoints,
  3. required Uint32List fg,
  4. required Uint32List bg,
  5. required Uint16List flags,
  6. Uint32List? hyperlinkId,
})

Implementation

LineCells({
  required this.line,
  required this.codepoints,
  required this.fg,
  required this.bg,
  required this.flags,
  Uint32List? hyperlinkId,
}) : hyperlinkId = hyperlinkId ?? Uint32List(codepoints.length);