LevitTaskTracker constructor

LevitTaskTracker({
  1. int maxHistory = 100,
})

Creates a detached tracker.

Implementation

LevitTaskTracker({this.maxHistory = 100}) {
  if (maxHistory < 0) {
    throw RangeError.range(maxHistory, 0, null, 'maxHistory');
  }
}