GenericLogCard constructor

const GenericLogCard({
  1. required DevLogModel log,
  2. bool isHighlighted = false,
  3. VoidCallback? onCopy,
  4. Key? key,
})

Implementation

const GenericLogCard({
  required this.log,
  this.isHighlighted = false,
  this.onCopy,
  super.key,
});