showForegroundAlert property

Future<bool> showForegroundAlert

Implementation

Future<bool> get showForegroundAlert async => await _channel.invokeMethod("showForegroundAlert");
void showForegroundAlert= (bool value)

Show push notifications alert when push notification is received while the app is running, default is true

Implementation

set showForegroundAlert(bool value) {
  _channel.invokeMethod("showForegroundAlert", value);
}