dismissPrompt method
Dismisses the current feedback prompt.
Call this when the user closes your feedback UI without submitting. This helps the SDK track dismissal patterns.
Example:
await Appero.instance.dismissPrompt();
Implementation
Future<void> dismissPrompt() async {
await _methodChannel.invokeMethod('dismissPrompt');
}