HttpLogStorage constructor

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

Implementation

HttpLogStorage({this.maxLogs = 500}) {
  _dir = Directory('${Directory.systemTemp.path}/runtime_insight');
  _file = File('${_dir.path}/http_logs.ndjson');
}