DebugEntry constructor

const DebugEntry({
  1. Key? key,
  2. required Widget title,
  3. List<Widget> actions = const [],
  4. required Widget child,
  5. EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(horizontal: 16),
})

Implementation

const DebugEntry({
  super.key,
  required this.title,
  this.actions = const [],
  required this.child,
  this.contentPadding = const EdgeInsets.symmetric(horizontal: 16),
});