NicePerformanceOverlay constructor

const NicePerformanceOverlay({
  1. Key? key,
  2. required Widget child,
  3. bool enabled = kDebugMode,
  4. AlignmentGeometry position = Alignment.topRight,
  5. bool showFps = true,
  6. bool showMemory = true,
  7. bool showBuildTime = true,
})

Implementation

const NicePerformanceOverlay({
  super.key,
  required this.child,
  this.enabled = kDebugMode,
  this.position = Alignment.topRight,
  this.showFps = true,
  this.showMemory = true,
  this.showBuildTime = true,
});