SamplingProfileNode constructor

SamplingProfileNode({
  1. required num size,
  2. required num total,
  3. required List<String> stack,
})

Implementation

SamplingProfileNode({
  required this.size,
  required this.total,
  required this.stack,
});