LineCells constructor

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

Implementation

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