Trace constructor

Trace({
  1. double? duration,
  2. String? id,
  3. bool? limitExceeded,
  4. List<Segment>? segments,
})

Implementation

Trace({
  this.duration,
  this.id,
  this.limitExceeded,
  this.segments,
});