LocusDebugOverlay constructor

const LocusDebugOverlay({
  1. Key? key,
  2. DebugOverlayPosition position = DebugOverlayPosition.bottomRight,
  3. bool expanded = false,
  4. bool showMap = false,
  5. double opacity = 0.9,
})

Creates a debug overlay widget.

Implementation

const LocusDebugOverlay({
  super.key,
  this.position = DebugOverlayPosition.bottomRight,
  this.expanded = false,
  this.showMap = false,
  this.opacity = 0.9,
});