SelectionServiceWidget constructor

const SelectionServiceWidget({
  1. Key? key,
  2. Color cursorColor = const Color(0xFF00BCF0),
  3. Color selectionColor = const Color.fromARGB(53, 111, 201, 231),
  4. bool showMagnifier = true,
  5. List<List<ContextMenuItem>>? contextMenuItems,
  6. required Widget child,
})

Implementation

const SelectionServiceWidget({
  super.key,
  this.cursorColor = const Color(0xFF00BCF0),
  this.selectionColor = const Color.fromARGB(53, 111, 201, 231),
  this.showMagnifier = true,
  this.contextMenuItems,
  required this.child,
});