CursorPainter constructor

CursorPainter({
  1. required bool visible,
  2. required CellSize charSize,
  3. required bool focused,
  4. required bool blinkVisible,
  5. required int cursorColor,
  6. required int textColor,
  7. required String composingString,
  8. required TextLayoutCache textLayoutCache,
  9. required TerminalStyle style,
})

Implementation

CursorPainter({
  required this.visible,
  required this.charSize,
  required this.focused,
  required this.blinkVisible,
  required this.cursorColor,
  required this.textColor,
  required this.composingString,
  required this.textLayoutCache,
  required this.style,
});