PerformanceHud constructor

const PerformanceHud({
  1. required Widget child,
  2. required PerformanceMonitorStore store,
  3. required PerformanceHudController controller,
  4. VoidCallback? onOpenDashboard,
  5. VoidCallback? onHidden,
  6. Key? key,
})

Creates the floating window that wraps child.

Implementation

const PerformanceHud({
  required this.child,
  required this.store,
  required this.controller,
  this.onOpenDashboard,
  this.onHidden,
  super.key,
});