PreeditOverlay constructor

const PreeditOverlay({
  1. required String text,
  2. required Rect cursorRect,
  3. required int bg,
  4. required int fg,
  5. required bool underline,
  6. required TextStyle textStyle,
  7. Key? key,
})

Implementation

const PreeditOverlay({
  required this.text,
  required this.cursorRect,
  required this.bg,
  required this.fg,
  required this.underline,
  required this.textStyle,
  super.key,
});