LogItem constructor

const LogItem(
  1. LogTheme theme,
  2. Log log, {
  3. LogItemState state = LogItemState.inactive,
  4. Duration minActiveDuration = const Duration(seconds: 3),
  5. Key? key,
})

Implementation

const LogItem(
  this.theme,
  this.log, {
  this.state = LogItemState.inactive,
  this.minActiveDuration = const Duration(seconds: 3),
  super.key,
});