SelectionAreaModifier constructor

const SelectionAreaModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. FocusNode? focusNode,
  5. TextSelectionControls? selectionControls,
})

Creates a SelectionArea.

If selectionControls is null, a platform specific one is used.

Implementation

const SelectionAreaModifier({
  super.key,
  super.child,
  super.modifierKey,
  this.focusNode,
  this.selectionControls,
});