FluentFragmentWidget constructor

const FluentFragmentWidget({
  1. Key? key,
  2. required Fragment node,
  3. required int anchorOffset,
  4. required int focusOffset,
  5. TextStyle? style,
  6. Color? cursorColor,
  7. Color? selectionColor,
})

Implementation

const FluentFragmentWidget({
  super.key,
  required this.node,
  required this.anchorOffset,
  required this.focusOffset,
  this.style,
  this.cursorColor,
  this.selectionColor,
});