InspectorOverlay constructor

const InspectorOverlay({
  1. Key? key,
  2. required InspectorSelection selection,
  3. bool needEdges = true,
  4. bool needDescription = true,
})

Implementation

const InspectorOverlay(
    {Key? key,
    required this.selection,
    this.needEdges = true,
    this.needDescription = true})
    : super(key: key);