shouldShowFeedbackPrompt property

Stream<bool> get shouldShowFeedbackPrompt

Stream that emits feedback prompt state changes.

Emits true when the SDK wants to show the feedback UI, and false when it should be hidden.

Implementation

Stream<bool> get shouldShowFeedbackPrompt {
  return _eventChannel.receiveBroadcastStream().map((event) => event as bool);
}