showDebugAnimNotification method

void showDebugAnimNotification()

Implementation

void showDebugAnimNotification() {
  if (isShowedBubble) {
    return;
  }
  var context = getContext();
  if (context == null) {
    return;
  }
  isShowedBubble = true;
  showOverlay((context, t) {
    return Opacity(
      opacity: t,
      child: DebugPopUp(
        callsSubscription: callsSubject.stream,
        onClicked: () {
          navigateToCallListScreen();
        },
        aliceCore: this,
      ),
    );
  }, duration: Duration.zero);
}