TalkerBlocLoggerSettings constructor

const TalkerBlocLoggerSettings({
  1. bool enabled = true,
  2. bool printEvents = true,
  3. bool printTransitions = true,
  4. bool printChanges = false,
  5. bool printEventFullData = true,
  6. bool printStateFullData = true,
  7. bool printCreations = false,
  8. bool printClosings = false,
  9. bool transitionFilter(
    1. Bloc bloc,
    2. Transition transition
    )?,
  10. bool eventFilter(
    1. Bloc bloc,
    2. Object? event
    )?,
})

Implementation

const TalkerBlocLoggerSettings({
  this.enabled = true,
  this.printEvents = true,
  this.printTransitions = true,
  this.printChanges = false,
  this.printEventFullData = true,
  this.printStateFullData = true,
  this.printCreations = false,
  this.printClosings = false,
  this.transitionFilter,
  this.eventFilter,
});