disableNotificationForceForegroundAware static method
Disables the behaviour set by enableNotificationForceForegroundAware
Implementation
static Future<bool> disableNotificationForceForegroundAware() async {
if(!Platform.isAndroid) return false;
return await _channel.invokeMethod("Pushe.disableForceForegroundAware") ?? false;
}