SelectionArea constructor Null safety

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

Creates a SelectionArea.

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

Implementation

const SelectionArea({
  super.key,
  this.focusNode,
  this.selectionControls,
  required this.child,
});