Inspector constructor

const Inspector({
  1. Key? key,
  2. required Widget child,
  3. Map<Type, LogRecordCardBuilder> customRecordBuilders = const {},
  4. bool isShow = false,
  5. List<Widget>? actions,
})

Implementation

const Inspector({
  super.key,
  required this.child,
  this.customRecordBuilders = const {},
  this.isShow = false,
  this.actions,
});