LineCells constructor
LineCells({
- required int line,
- required Uint32List codepoints,
- required Uint32List fg,
- required Uint32List bg,
- required Uint16List flags,
- 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);