SelectionArea constructor

SelectionArea({
  1. required Widget child,
  2. SelectionController? controller,
  3. ScrollController? scrollController,
  4. Key? key,
})

Implementation

SelectionArea({
  required this.child,
  this.controller,
  this.scrollController,
  super.key,
});