TraceViewerApp constructor

const TraceViewerApp({
  1. Key? key,
  2. String? filePath,
  3. List<TraceSpan>? spans,
  4. int? minTs,
  5. int? maxTs,
  6. FileSystem fileSystem = const LocalFileSystem(),
})

Implementation

const TraceViewerApp({
  super.key,
  this.filePath,
  this.spans,
  this.minTs,
  this.maxTs,
  this.fileSystem = const LocalFileSystem(),
});