setForegroundPresentationOptions method
Configures whether the native system UI should be shown for foreground notifications.
Implementation
@override
Future<void> setForegroundPresentationOptions({
required bool showSystemUI,
}) async {
await methodChannel.invokeMethod('setForegroundPresentationOptions', {
'showSystemUI': showSystemUI,
});
}