showFeedbackPrompt method

Future<void> showFeedbackPrompt()

Manually triggers the feedback prompt UI.

This method allows you to show the feedback dialog at any time, bypassing the automatic trigger logic. Useful for testing or providing users with a manual way to give feedback.

Throws PlatformException if showing the prompt fails.

Example:

await Appero.instance.showFeedbackPrompt();

Implementation

Future<void> showFeedbackPrompt() async {
  await _methodChannel.invokeMethod('showFeedbackPrompt');
}