DebugInfoItem constructor

const DebugInfoItem({
  1. required String label,
  2. required String value,
  3. VoidCallback? onTap,
  4. bool copyable = true,
})

Creates a debug info item.

Implementation

const DebugInfoItem({
  required this.label,
  required this.value,
  this.onTap,
  this.copyable = true,
});