HttpTracker constructor

HttpTracker({
  1. int maxLogs = 500,
})

Implementation

HttpTracker({int maxLogs = 500}) : _maxLogs = maxLogs {
  _storage = HttpLogStorage(maxLogs: maxLogs);
}