SessionLogFilter constructor

SessionLogFilter({
  1. String? endpoint,
  2. String? method,
  3. String? futureCall,
  4. required bool slow,
  5. required bool error,
  6. required bool open,
  7. int? lastSessionLogId,
})

Implementation

SessionLogFilter({
  this.endpoint,
  this.method,
  this.futureCall,
  required this.slow,
  required this.error,
  required this.open,
  this.lastSessionLogId,
});