Trace constructor

const Trace({
  1. required ExceptionInfo exception,
  2. Iterable<Frame> frames = const [],
  3. String? rawTrace,
})

Implementation

const Trace({
  required this.exception,
  this.frames = const [],
  this.rawTrace,
});