CustomWidgetInspector constructor

const CustomWidgetInspector({
  1. Key? key,
  2. required Widget child,
})

Creates a widget that enables inspection for the child.

The child argument must not be null.

Implementation

const CustomWidgetInspector({Key? key, required this.child})
    : assert(child != null),
      super(key: key);