SelectableTextTheme constructor

const SelectableTextTheme({
  1. double? cursorWidth,
  2. double? cursorHeight,
  3. Radius? cursorRadius,
  4. Color? cursorColor,
  5. BoxHeightStyle? selectionHeightStyle,
  6. BoxWidthStyle? selectionWidthStyle,
  7. bool? enableInteractiveSelection,
})

Theme data for SelectableText to customize cursor and selection behavior.

Implementation

const SelectableTextTheme({
  this.cursorWidth,
  this.cursorHeight,
  this.cursorRadius,
  this.cursorColor,
  this.selectionHeightStyle,
  this.selectionWidthStyle,
  this.enableInteractiveSelection,
});