DebugPopUp constructor

const DebugPopUp({
  1. Key? key,
  2. required VoidCallback onClicked,
  3. required Stream<List<AliceHttpCall>> callsSubscription,
  4. required AliceCore aliceCore,
})

class widget to show overlay bubble describes the number request count and is a place to navigate to alice inspector. onClicked call back when user clicked in debug point callsSubscription the stream to listen how many request in app

Implementation

const DebugPopUp({
  Key? key,
  required this.onClicked,
  required this.callsSubscription,
  required this.aliceCore,
}) : super(key: key);