setBackButtonDismissesInAppMessageView static method
Android Only
Sets whether the back button should dismiss the in-app message view.
Note: This method has no effect on iOS
isDismisses
- Whether the back button should dismiss the in-app message view.
default is true.
Implementation
static Future<void> setBackButtonDismissesInAppMessageView(bool isDismisses) {
return HacklePlatform.instance
.setBackButtonDismissesInAppMessageView(isDismisses);
}