CustomWidgetInspector constructor
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);