SelectionOverlayItem constructor

const SelectionOverlayItem({
  1. required Widget widget,
  2. bool containWithinParent = false,
  3. bool fullWidth = false,
})

Creates a SelectionOverlayItem with the given widget, containWithinParent, and fullWidth values.

Implementation

const SelectionOverlayItem({
  required this.widget,
  this.containWithinParent = false,
  this.fullWidth = false,
});