ClosedScope constructor

ClosedScope({
  1. required LogScope scope,
  2. required bool success,
  3. required Duration duration,
  4. Object? error,
  5. StackTrace? stackTrace,
})

Captures the arguments passed to LogWriter.closeScope.

Implementation

ClosedScope({
  required this.scope,
  required this.success,
  required this.duration,
  this.error,
  this.stackTrace,
});