DefaultSelectionOverlay constructor

const DefaultSelectionOverlay({
  1. Key? key,
  2. Color borderColor = DHColors.color_000000_15,
  3. double borderWidth = .3,
})

Implementation

const DefaultSelectionOverlay({
  Key? key,
  this.borderColor = DHColors.color_000000_15,
  this.borderWidth = .3,
})  : assert(borderWidth >= 0.0),
      super(key: key);