SelectionArea constructor Null safety
- {Key? key,
- FocusNode? focusNode,
- TextSelectionControls? selectionControls,
- 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,
});