LevitTaskTracker constructor
LevitTaskTracker({
- int maxHistory = 100,
Creates a detached tracker.
Implementation
LevitTaskTracker({this.maxHistory = 100}) {
if (maxHistory < 0) {
throw RangeError.range(maxHistory, 0, null, 'maxHistory');
}
}