LogItem constructor

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

Implementation

const LogItem(
  this.theme,
  this.log, {
  this.state = LogItemState.inactive,
  this.minActiveDuration = const Duration(milliseconds: 3000),
  this.fadeDuration = const Duration(milliseconds: 500),
  super.key,
});