DiscoveredScreen constructor

DiscoveredScreen({
  1. required String name,
  2. required Map<String, dynamic> widgetTree,
  3. required List<WidgetIssue> issues,
  4. required int totalWidgets,
  5. required int maxDepth,
  6. ScreenPerformance? performance,
  7. String? navigatedVia,
})

Implementation

DiscoveredScreen({
  required this.name,
  required this.widgetTree,
  required this.issues,
  required this.totalWidgets,
  required this.maxDepth,
  this.performance,
  this.navigatedVia,
});