SelectableRegion constructor Null safety
- {Key? key,
- required FocusNode focusNode,
- required TextSelectionControls selectionControls,
- required Widget child}
Create a new SelectableRegion widget.
The selectionControls are used for building the selection handles and toolbar for mobile devices.
Implementation
const SelectableRegion({
super.key,
required this.focusNode,
required this.selectionControls,
required this.child,
});