setMessagesSuppressed method

Future<void> setMessagesSuppressed(
  1. bool suppress
)

Enable or disable suppression of Firebase In App Messaging messages.

When enabled, no in app messages will be rendered until either you either disable suppression, or the app restarts, as this state is not preserved over app restarts.

Implementation

Future<void> setMessagesSuppressed(bool suppress) {
  return _delegate.setMessagesSuppressed(suppress);
}