StripReplayProfile.of constructor

StripReplayProfile.of(
  1. List<PdfRenderCommand> commands
)

Implementation

factory StripReplayProfile.of(List<PdfRenderCommand> commands) {
  final profiler = _StripReplayProfiler();
  replayCommands(commands, profiler);
  return profiler.finish();
}