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(),
  7. void onExport(
    1. String filename,
    2. Uint8List bytes
    )?,
  8. VoidCallback? onOpenFileRequested,
})

Implementation

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