Profile constructor

Profile({
  1. required List<ProfileNode> nodes,
  2. required num startTime,
  3. required num endTime,
  4. List<int>? samples,
  5. List<int>? timeDeltas,
})

Implementation

Profile(
    {required this.nodes,
    required this.startTime,
    required this.endTime,
    this.samples,
    this.timeDeltas});