DebugTree constructor

DebugTree({
  1. bool showEmoji = false,
  2. bool showColor = false,
  3. bool showTag = true,
  4. int methodCount = 2,
  5. int errorMethodCount = 8,
})

Implementation

DebugTree({
  this.showEmoji = false,
  this.showColor = false,
  this.showTag = true,
  this.methodCount = 2,
  this.errorMethodCount = 8,
})  : assert(methodCount > 0),
      assert(errorMethodCount > 0);