showForegroundAlert property
Implementation
Future<bool> get showForegroundAlert async => await _channel.invokeMethod("showForegroundAlert");
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);
}