SwiftDevToolsUI constructor

const SwiftDevToolsUI({
  1. Key? key,
  2. bool enableStateInspector = true,
  3. bool enableDependencyGraph = true,
  4. bool enablePerformanceProfiler = true,
  5. bool enableTimeTravel = true,
})

Implementation

const SwiftDevToolsUI({
  super.key,
  this.enableStateInspector = true,
  this.enableDependencyGraph = true,
  this.enablePerformanceProfiler = true,
  this.enableTimeTravel = true,
});