DefaultSelectionStyleModifier constructor

const DefaultSelectionStyleModifier({
  1. Key? key,
  2. Key? modifierKey,
  3. Color? cursorColor,
  4. Color? selectionColor,
  5. Widget? child,
})

Creates a default selection style widget that specifies the selection properties for all widgets below it in the widget tree.

Implementation

const DefaultSelectionStyleModifier({
  super.key,
  super.modifierKey,
  this.cursorColor,
  this.selectionColor,
  super.child,
});