disableInAppAlerts property
bool
get
disableInAppAlerts
Implementation
bool get disableInAppAlerts => getFunction<bool>(
SettingsKeys.notificationsDisableInAppAlerts,
Platform.isIOS == true,
true);
set
disableInAppAlerts
(bool disableInAppAlerts)
Implementation
set disableInAppAlerts(bool disableInAppAlerts) => setFunction<bool>(
SettingsKeys.notificationsDisableInAppAlerts,
disableInAppAlerts,
Platform.isIOS == true);